-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 916 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
from setuptools import setup, find_packages
setup(name='peitho',
version='0.1',
description='Perfecting Experiments with Information Theory',
url='https://github.com/ld2113/Experimental-Design',
author='Leander Dony, Scott Ward, Jonas Mackerodt, Juliane Liepe, Michael PH Stumpf',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires = [
'pycuda',
'numpy',
'matplotlib',
'python-libsbml',
'means'
],
entry_points = {
'console_scripts': ['peitho=peitho.main.main:main']
},
keywords = ['information theory','entropy','experimental design'],
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'],
zip_safe=False)