-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
65 lines (60 loc) · 1.59 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
60
61
62
63
64
65
# -*- coding: utf-8 -*-
import re
from setuptools import setup
import setuptools
with open("README.md", "r") as doc:
long_description = doc.read()
version = re.search(
r'^__version__\s*=\s*"(.*)"',
open("BFAIR/__init__.py").read(),
re.M,
).group(1)
setup(
name="BFAIR",
version=version,
author="AutoFlow",
author_email="TBD",
description=(
"General Repository for Omics Data Handling tools"
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AutoFlowResearch/BFAIR",
packages=setuptools.find_packages(),
# entry_points={
# "console_scripts": [
# "BFAIR = BFAIR.__main__:main"
# ]
# },
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"flake8",
"cobra == 0.24.0",
"pytfa == 0.9.3",
"pandas == 1.3.5",
"matplotlib == 3.2.2",
#"sympy == 1.5.1",
"pyopenms == 2.7.0",
"molmass == 2020.6.10",
"escher == 1.6.0",
"freezegun == 1.1.0",
"openpyxl == 3.0.6",
#"requests == 2.25.1",
"lazy_object_proxy == 1.6.0",
"pypika == 0.48.2",
#"networkx == 2.5.1",
#"nbsphinx == 0.8.3",
"scipy == 1.7.3",
"seaborn == 0.11.2",
"scikit-learn == 1.0.2",
"numpy == 1.21.6",
"rdkit-pypi == 2021.9.4"
],
# dependency_links=
include_package_data=True,
)