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
|
from setuptools import setup, find_packages
import totalopenstation
setup(
name='totalopenstation',
version=totalopenstation.__version__,
author='Stefano Costa',
author_email='steko@iosa.it',
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='http://tops.iosa.it/',
license='GNU GPLv3',
description='Download and export survey data from your total station',
long_description=open('README.txt').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 :: 2',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: GIS',
],
keywords='survey geodimeter',
install_requires=['pyserial'],
include_package_data = True,
zip_safe = False,
)
|