加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
ni1o1 提交于 2022-11-09 13:13 . update activity functions
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="transbigdata",
version="0.4.16",
author="Qing Yu",
author_email="yuq@sustech.edu.cn",
description="A Python package developed for transportation spatio-temporal big data processing and analysis.",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
url="https://github.com/ni1o1/transbigdata",
project_urls={
"Bug Tracker": "https://github.com/ni1o1/transbigdata/issues",
},
install_requires=[
"numpy", "pandas", "shapely", "geopandas>=0.10.2", "scipy", "matplotlib"
],
classifiers=[
"Operating System :: OS Independent",
"Topic :: Text Processing :: Indexing",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
package_dir={'transbigdata': 'src/transbigdata'},
packages=['transbigdata'],
python_requires=">=3.6",
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化