forked from cityjson/cjio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (45 loc) · 1.38 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
from setuptools import setup
import re
from pathlib import Path
import cjio
CURRENT_DIR = Path(__file__).parent
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='cjio',
version=cjio.__version__,
description='CLI to process and manipulate CityJSON files',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/tudelft3d/cjio',
author='Hugo Ledoux, Balázs Dukai',
author_email='[email protected], [email protected]',
python_requires='~=3.5',
packages=['cjio'],
package_data={'cjio': ['schemas/0.9/*', 'schemas/1.0.0/*']},
# 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=[
'Click',
'jsonschema',
'jsonref',
'numpy',
'strict-rfc3339',
'pyproj'
],
entry_points='''
[console_scripts]
cjio=cjio.cjio:cli
''',
)