-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
56 lines (54 loc) · 1.5 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tabby_cat",
version="0.0.1",
author="Fabion Kauker",
author_email="[email protected]",
description="Run US wide analysis on broadband footprint",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fhk/tabby_cat",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
"attrs==19.3.0",
"beautifulsoup4==4.9.1",
"certifi==2020.4.5.1",
"cffi==1.14.0",
"chardet==3.0.4",
"click==7.1.2",
"click-plugins==1.1.1",
"cligj==0.5.0",
"cryptography==2.9.2",
"h3==3.7.1",
"geopandas==0.9.0",
"idna==2.9",
"munch==2.5.0",
"networkx==2.4",
"numpy==1.18.1",
"pandas==1.0.3",
"pcst-fast==1.0.7",
"pybind11==2.5.0",
"pycparser==2.20",
"pyOpenSSL==19.1.0",
"pyproj==2.6.1.post1",
"PySocks==1.7.1",
"pytest==6.2.5",
"python-dateutil==2.8.1",
"pytz==2020.1",
"requests==2.23.0",
"Rtree==0.9.7",
"scipy==1.6.1",
"Shapely==1.6.4.post1",
"six==1.15.0",
"soupsieve==2.0.1",
"urllib3==1.25.8",
],
)