-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""Package installer."""
import os
from setuptools import setup
from setuptools import find_packages
LONG_DESCRIPTION = ""
if os.path.exists("README.md"):
with open("README.md") as fp:
LONG_DESCRIPTION = fp.read()
scripts = []
setup(
name="mobsim",
version="0.0.2",
description="Individual mobility simulation",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Ye Hong",
author_email=("[email protected]"),
license="Apache-2.0",
url="https://github.com/irmlma/mobility-simulation",
install_requires=["geopandas", "scipy", "numpy", "pyyaml", "powerlaw", "trackintel"],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 1 - Planning",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages("."),
python_requires=">=3.9",
)