-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (40 loc) · 1.25 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
import setuptools
from pdgpoints import _version
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
author='Ian Nesbitt',
author_email='[email protected]',
name='pdgpoints',
version=_version.__version__,
description='PDG point cloud staging pipeline',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/PermafrostDiscoveryGateway/viz-points',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'py3dtiles @ git+https://gitlab.com/Oslandia/py3dtiles.git@68cdcd9080994d38614d3aa5db75cea2456298cf',
'pdal'
],
extras_require={
'dev': [
'sphinx',
]
},
entry_points = {
'console_scripts': [
'tilepoints=pdgpoints.cli:cli',
'tilepoints-test=pdgpoints.test:test'
],
},
python_requires='>=3.9, <4.0',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
license='Apache Software License 2.0',
)