-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (27 loc) · 970 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
29
30
31
import setuptools
import toml
with open("README.md", "r") as fh:
long_description = fh.read()
with open('Pipfile', 'rt') as p:
dependencies_toml = p.read()
dependencies = toml.loads(dependencies_toml)
dependencies = dependencies['packages']
dependency_packages = dependencies.keys()
setuptools.setup(
name="deep-geometry",
version="2.0.0",
author="Rein van 't Veer",
author_email="[email protected]",
description="A python library for preprocessing geospatial vector geometries for use in deep learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SPINlab/deep-geometry",
packages=setuptools.find_packages(),
install_requires=dependency_packages,
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)