-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
48 lines (40 loc) · 1.45 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
#!/usr/bin/env python3
"""
Metadata and setup info for installation.
See https://packaging.python.org/en/latest/distributing.html
"""
import setuptools
with open('README.rst') as f:
long_description = f.read()
config = dict(
name='forestutils',
version='0.2.1',
description='Tools to analyse 3D scans of a forest.',
long_description=long_description,
author='Zac Hatfield-Dodds',
author_email='[email protected]',
license='GPL3+',
url='https://github.com/borevitzlab/3D-tools',
keywords='forest LIDAR photogrammetry environment remote-sensing',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Visualization',
],
packages=['src'],
install_requires=['numpy', 'plyfile', 'utm'],
extras_require={
'test': ['mypy', 'pylint', 'sphinx'],
},
entry_points={'console_scripts': ['forestutils=src.forestutils:main']},
)
if __name__ == '__main__':
setuptools.setup(**config)