-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
61 lines (58 loc) · 1.43 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as f:
install_requires = f.read().split('\n')[:-1]
setuptools.setup(
name='urbantrips',
version='0.3.0',
author="Felipe Gonzalez & Sebastian Anapolsky",
author_email="",
description="A library to process public transit smart card data.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/EL-BID/UrbanTrips",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
install_requires=[
'anyio',
'contextily',
'folium',
'fiona',
'geopandas',
'fiona',
'h3<4',
'ipython',
'jupyterlab<4.4',
'jupyter',
'libpysal',
'mapclassify',
'matplotlib',
'matplotlib-scalebar',
'notebook',
'numba',
'numpy<2',
'openpyxl',
'osmnx',
'pandas',
'pandana',
'patsy',
'Pillow<11',
'platformdirs',
'plotly',
'python-pptx',
'PyYAML',
'seaborn',
'shapely',
'statsmodels',
'streamlit',
'streamlit-folium',
'typing_extensions',
'weightedstats',
'OSMnet',
]
)