Skip to content
Snippets Groups Projects
Commit 3ac4c074 authored by Yngve Levinsen's avatar Yngve Levinsen
Browse files

updating setup for pipy

parent ebf6421d
No related branches found
No related tags found
No related merge requests found
This project provides useful Python tools for executing TraceWin, and reading/writing TraceWin data files.
The files are written primarily for usage at European Spallation Source, but might be useful elsewhere.
You are free to use this code, but no warranty whatsoever is given.
from distutils.core import setup from distutils.core import setup
setup(name='Yngve Tools', setup(name='ESS Python Tools',
version='1.0', version='1.0',
description='Various stuff for ESS Work ', description='ESS Related Tools',
author='Yngve Inntjore Levinsen', url='https://bitbucket.org/eothred/ess-python-tools',
author_email='yngve.levinsen@esss.se', author='Yngve Inntjore Levinsen',
packages=['ess'], author_email='yngve.levinsen@esss.se',
scripts=['tracewin'], 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',
],
packages=['ess'],
scripts=['tracewin'],
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment