-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.21 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
from os import path
from setuptools import find_packages, setup
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, "README.md")) as f:
README = f.read()
setup(
name="grip4-connector",
packages=find_packages(),
version="0.0.7",
description="GRIP4 Connector to get region road data from the Global Road Inventory Project",
url="https://github.com/Repsay/grip4-connector",
download_url="https://github.com/Repsay/grip4-connector/releases",
long_description=README,
long_description_content_type="text/markdown",
author="Jasper Delahaije",
author_email="jdelahaije@gmail.com",
license="MIT",
python_requires=">=3.8",
install_requires=["requests", "geopandas", "pycountry"],
include_package_data=True,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Natural Language :: English",
],
)