forked from ASinanSaglam/webng
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (44 loc) · 1.16 KB
/
setup.py
File metadata and controls
49 lines (44 loc) · 1.16 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
from setuptools import setup, find_packages
from webng.core.version import get_version
VERSION = get_version()
f = open("README.md", "r")
LONG_DESCRIPTION = f.read()
f.close()
INSTALL_REQUIRES = [
"numpy",
"cement",
"pyyaml",
"colorlog",
"seaborn",
"h5py",
"pygpcca",
"bionetgen>=0.7.5",
"libroadrunner",
"networkx",
"westpa>=2022.01",
"scikit-learn",
"nbformat"
]
EXTRAS_REQUIRE = {
"dev" : ['pytest', 'twine>=1.11.0', 'wheel>=0.31.0']
}
setup(
name="webng",
version=VERSION,
description="A weighted ensemble simulation setup tool starting from a BNGL model",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Ali Sinan Saglam",
author_email="asinansaglam@gmail.com",
url="https://github.com/ASinanSaglam/BNG_WESTPA_pipeline",
license="unlicensed",
packages=find_packages(exclude=["ez_setup", "tests*"]),
package_data={"webng": ["templates/*"]},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
entry_points="""
[console_scripts]
webng = webng.main:main
""",
)