-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
58 lines (55 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup
from pathlib import Path
CURRENT_DIR = Path(__file__).parent
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='cjio',
version='0.9.0',
description='CLI to process and manipulate CityJSON files',
long_description=long_description,
long_description_content_type="text/x-rst",
url='https://github.com/cityjson/cjio',
author='Hugo Ledoux, Balázs Dukai',
author_email='[email protected], [email protected]',
python_requires='>=3.6',
packages=['cjio'],
# include_package_data=True,
license = 'MIT',
classifiers=[
# https://pypi.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: GIS',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows'
],
install_requires=[
'numpy',
'Click>=8.1.0'
],
extras_require={
'develop': [
'pytest',
'bump2version'
],
'export': [
'pandas',
'mapbox-earcut',
'triangle'
],
'validate': [
'cjvalpy>=0.3.0'
],
'reproject': [
'pyproj>=3.0.0'
]
},
entry_points='''
[console_scripts]
cjio=cjio.cjio:cli
''',
)