-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
37 lines (35 loc) · 1.39 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
from setuptools import setup, find_packages
import totalopenstation
setup(
name='totalopenstation',
version=totalopenstation.__version__,
author='Stefano Costa',
author_email='[email protected]',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'gui']),
scripts=['scripts/totalopenstation-gui.py',
'scripts/totalopenstation-cli-parser.py',
'scripts/totalopenstation-cli-connector.py'],
url='https://tops.iosa.it/',
license='GNU GPLv3',
description='Download and export survey data from your total station',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: X11 Applications',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: GIS',
],
keywords='survey geodimeter',
install_requires=['pyserial==3.4', 'pygeoif==0.7'],
tests_require=['pytest>=5.1'],
include_package_data = True,
zip_safe = False,
)