forked from EL-BID/urbanpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (24 loc) · 928 Bytes
/
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
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]
# Set a development version for source installs
__version__ = "0.dev0"
setuptools.setup(
name="urbanpy",
version=__version__, # This will be replaced with the commit tag
author="Andres Regal, Claudio Ortega & Antonio Vazquez Brust",
author_email="[email protected]",
description="A library to download, process and visualize high resolution urban data.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/EL-BID/urbanpy",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=install_requires,
python_requires=">=3.6",
)