-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1014 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 1014 Bytes
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
from setuptools import setup
setup(
name='pytry',
packages=['pytry'],
version='0.9.2',
entry_points=dict(
console_scripts=['pytry = pytry.cmdline:run',
'pytry-many = pytry.many:run_many'],
),
author='Terry Stewart',
description='Running trials with parameter variation',
long_description='''
Pytry is a light-weight Python package for defining something that you want
to try, some parameters you'd like to vary while you try it, and some
measurement that you want to do each time you try it.''',
author_email='terry.stewart@gmail.com',
url='https://github.com/tcstewar/pytry',
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
]
)