-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
32 lines (28 loc) · 1.05 KB
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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read().splitlines()
setup(
name='GeodataValidator',
version='0.1.0',
author='OpenGeoShift',
author_email='contact@opengeoshift.com',
license='UNLICENSED',
description='GeodataValidator is a Python package to validate geospatial data',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
test_suite='tests',
python_requires='>=3.6',
install_requires=requirements,
tests_require=['pytest'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
]
)