Skip to content
Snippets Groups Projects
setup.py 1.17 KiB
Newer Older
Yngve Levinsen's avatar
Yngve Levinsen committed
from distutils.core import setup
from ess import __version__
Yngve Levinsen's avatar
Yngve Levinsen committed

Yngve Levinsen's avatar
Yngve Levinsen committed
setup(name='ESS Python Tools',
    version=__version__,
    description='ESS Related Tools for Python',
Yngve Levinsen's avatar
Yngve Levinsen committed
    url='http://ess-bp.pages.esss.lu.se/ess-python-tools',
    author='Yngve Levinsen',
Yngve Levinsen's avatar
Yngve Levinsen committed
    author_email='yngve.levinsen@esss.se',
    classifiers=[
        # How mature is this project? Common values are
        #   3 - Alpha
        #   4 - Beta
        #   5 - Production/Stable
Yngve Levinsen's avatar
Yngve Levinsen committed
        'Development Status :: 4 - Beta',
Yngve Levinsen's avatar
Yngve Levinsen committed
    
        # 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 :: 3.5',
Yngve Levinsen's avatar
Yngve Levinsen committed
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
Yngve Levinsen's avatar
Yngve Levinsen committed
    ],
    packages=['ess'],
    scripts=['scripts/tracewin', 'scripts/tracewin_errorstudy', 'scripts/ibsimu2tw'],
Yngve Levinsen's avatar
Yngve Levinsen committed
)
Yngve Levinsen's avatar
Yngve Levinsen committed