-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (56 loc) · 1.79 KB
/
setup.py
File metadata and controls
60 lines (56 loc) · 1.79 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# with open("README.rst") as f:
# readme = f.read()
# with open("LICENSE") as f:
# license = f.read()
setup(
name="mscommunity",
version="0.0.1",
description="Python package for building and analyzing microbial communities using ModelSEED",
# long_description_content_type="text/x-rst",
# long_description=readme,
author="Andrew Freiburger",
author_email="afreiburger@anl.gov",
url="https://github.com/ModelSEED/MSCommunity",
# license=license,
packages=find_packages(),
# package_data={
# "modelseedpy": ["config.cfg", "community/*.html", "core/*.html", "data/*", "data/categories/*", "data/templates/*"],
# },
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Natural Language :: English",
],
include_package_data =True,
install_requires=[
"networkx >= 2.4",
"cobra >= 0.28.0",
"scikit-learn >= 1.2.0",
"scipy >= 1.5.4",
"chemicals >= 1.0.13",
"chemw >= 0.3.2",
"matplotlib >= 3.0.0",
"icecream",
"deepdiff",
"openpyxl",
"jinja2",
"multiprocess",
"h5py",
"graphviz"
],
tests_require=[
"pytest",
],
project_urls={
# "Documentation": "https://modelseedpy.readthedocs.io/en/latest/",
"Issues": "https://github.com/ModelSEED/MSCommunity/issues",
},
)