-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (27 loc) · 926 Bytes
/
setup.py
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
#!/usr/bin/env python
import sys
try:
from setuptools import setup, find_packages
except ImportError:
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup, find_packages
import nestly
if sys.version_info < (2, 7, 0):
raise Exception('Python 2.7 is required.')
setup(name='nestly',
version=nestly.__version__,
description="""Nestly is a collection of functions designed to make
running software with combinatorial choices of parameters easier.""",
author='Erick Matsen',
author_email='[email protected]',
url='https://github.com/fhcrc/nestly',
packages=find_packages(),
test_suite='nestly.test.suite',
entry_points={
'console_scripts': [
'nestrun = nestly.scripts.nestrun:main',
'nestagg = nestly.scripts.nestagg:main',
]
},
tests_require=['mock>=1.0.1'])