from distutils.core import setup setup(name='ESS Python Tools', version='1.8', description='ESS Related Tools', url='https://gitlab01.esss.lu.se/ess-bp/ess-python-tools', author='Yngve Inntjore Levinsen', author_email='yngve.levinsen@esss.se', classifiers=[ # How mature is this project? Common values are # 3 - Alpha # 4 - Beta # 5 - Production/Stable 'Development Status :: 4 - Beta', # Indicate who your project is intended for 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Physics', # Pick your license as you wish (should match "license" above) 'License :: Other/Proprietary License', # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], packages=['ess'], scripts=['scripts/tracewin', 'scripts/tracewin_errorstudy', 'scripts/ibsimu2tw'], )