-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·42 lines (38 loc) · 1.15 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
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages # type: ignore
with open('README.rst') as readme_file:
README = readme_file.read()
setup(
name='gjtk',
use_scm_version=True,
description='GeoJSON ToolKit',
long_description=README,
author='David Tucker',
author_email='[email protected]',
license='LGPLv2+',
url='https://github.com/openfusion-dev/gjtk-py',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
python_requires='>= 3.5',
setup_requires=[
'setuptools-scm >= 3.3',
],
install_requires=[
'decorator >= 4.0',
'matplotlib >= 1.5',
],
entry_points={'console_scripts': ['gjtk = gjtk.cli:main']},
keywords='GeoJSON',
classifiers=[
'License :: OSI Approved :: '
'GNU Lesser General Public License v2 or later (LGPLv2+)',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Development Status :: 5 - Production/Stable',
],
)