-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.07 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.07 KB
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
# -*- coding: utf-8 -*-
from os.path import abspath, dirname, isfile
from sys import path
from setuptools import setup, find_packages
# To temporarily modify sys.path
SETUP_DIR = abspath(dirname(__file__))
requirement_path = f"{SETUP_DIR}/requirements.txt"
install_requires = []
if isfile(requirement_path):
with open(requirement_path) as f:
install_requires = f.read().splitlines()
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.10",
],
keywords="systems biology, genome-scale model",
packages=find_packages(),
package_data={
"cobradb": [
"data/escher_templates/*",
]
},
install_requires=install_requires,
)