forked from SBRG/cobradb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.57 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
# -*- coding: utf-8 -*-
from os.path import abspath, dirname
from sys import path
# To temporarily modify sys.path
SETUP_DIR = abspath(dirname(__file__))
try:
from setuptools import setup, find_packages
except ImportError:
path.insert(0, SETUP_DIR)
import ez_setup
path.pop(0)
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name='cobradb',
version='0.2.0',
description="""COBRAdb loads genome-scale metabolic models and genome
annotations into a relational database.""",
url='https://github.com/SBRG/cobradb',
author='Zachary King, Stephen Federowicz',
author_email='[email protected], [email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
keywords='systems biology, genome-scale model',
packages=find_packages(),
package_data={'cobradb': ['settings.ini']},
install_requires=['SQLAlchemy>=1.0.12',
'cobra>=0.4.0',
'numpy>=1.9.1',
'psycopg2>=2.5.4',
'biopython>=1.65',
'scipy>=0.17.0',
'lxml>=3.6.0',
'pytest>=2.6.4',
'six>=1.10.0',
'tornado>=4.4.2',
'escher>=1.5.0',
'configparser>=3.5.0'],
)