-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (56 loc) · 2.13 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
51
52
53
54
55
56
57
58
59
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="COBREXA_FVA",
version="0.1.0",
description="This package provides the COBREXA FVA Building Block",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PerMedCoE/BuildingBlocks",
author="PerMedCoE Project",
author_email="infoPerMedCoE@bsc.es",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
keywords="BuildingBlock, PerMedCoE, COBREXA",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.6, <4",
install_requires=["permedcoe>=0.0.10"],
extras_require={
"dev": ["check-manifest"],
},
# If there are data files included in your packages that need to be
# installed, specify them here.
package_data={
"COBREXA_FVA": ["assets/*",
"assets/COBREXA/*",
"definition.json"],
},
entry_points={
"console_scripts": [
"COBREXA_FVA=COBREXA_FVA.__main__:main",
],
},
project_urls={
"Bug Reports": "https://github.com/PerMedCoE/BuildingBlocks/issues",
"Source": "https://github.com/PerMedCoE/BuildingBlocks/tree/main/COBREXA",
},
)