-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
58 lines (46 loc) · 1.76 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
from os.path import join, splitext, basename, dirname
from glob import glob
# Read version number.
exec(open('src/experimentator/__version__.py').read())
def read(*names, **kwargs):
return open(join(dirname(__file__), *names), encoding=kwargs.get('encoding', 'utf8')).read()
setup(name='experimentator',
version=__version__,
license='MIT',
description='Experiment builder',
long_description=read('README.rst'),
author='Henry S. Harrison',
author_email='[email protected]',
url='http://experimentator.readthedocs.org',
download_url='https://bitbucket.org/hharrison/experimentator/get/default.tar.gz',
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(file))[0] for file in glob('src/*.py')],
zip_safe=True,
keywords='experiment science psychology experimental design research',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
entry_points={
'console_scripts': ['exp = experimentator.__main__:main'],
},
install_requires=[
'numpy',
'pandas',
'docopt',
'schema',
'pyyaml',
'networkx>=2.0',
],
)