-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 960 Bytes
/
setup.py
File metadata and controls
37 lines (34 loc) · 960 Bytes
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
import sys
from os.path import join, dirname, abspath
from setuptools import setup, find_packages
# this is a trick to get the version before the package is installed
directory = dirname(abspath(__file__))
sys.path.insert(0, join(directory, "biggr_models"))
version = __import__("version").__version__
setup(
name="biggr_models",
version=version,
author="Pascal Pieters",
author_email="paspie@biosustain.dtu.dk",
url="http://bigg.ucsd.edu",
packages=find_packages(),
package_data={
"biggr_models": [
"static/assets/*",
"static/css/*",
"static/js/*",
"templates/*",
"db_management/*",
]
},
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
],
install_requires=[
"cobradb",
"Jinja2",
],
)