-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
43 lines (40 loc) · 1.29 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
# -*- coding: utf-8 -*-
from os.path import abspath, dirname
from sys import path
from setuptools import setup, find_packages
# To temporarily modify sys.path
SETUP_DIR = abspath(dirname(__file__))
setup(
name='cobradb',
version='0.3.0',
description="""COBRAdb loads genome-scale metabolic models and genome
annotations into a relational database.""",
url='https://github.com/SBRG/cobradb',
author='Zachary King',
author_email='zaking@ucsd.edu',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
keywords='systems biology, genome-scale model',
packages=find_packages(),
install_requires=[
'SQLAlchemy>=1.3.10,<2',
# Be careful upgrading cobra for use with BiGG; ancient models (e.g.
# iND750.xml) cause errors with cobra versions >=0.15
'cobra>=0.14.2,<0.15',
'python-libsbml>=5.18.0,<6',
'numpy>=1.17.2,<2',
'psycopg2>=2.8.3,<3',
'biopython>=1.74,<2',
'scipy>=1.3.1,<2',
'lxml>=4.4.1,<5',
'pytest>=4.6.6,<5',
'six>=1.12.0,<2',
'tornado>=4.5.3,<5',
'escher>=1.7.3,<2',
'configparser>=4.0.2,<5',
],
)