-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
52 lines (48 loc) · 1.88 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
"""Set up the osmolytes package."""
import setuptools
with open("README.md", "r") as readme:
LONG_DESCRIPTION = readme.read()
setuptools.setup(
name="osmolytes",
version="1.3.0",
description=(
"This code attempts to predict the influence of osmolytes on protein "
"stability"
),
long_description=(
"This code attempts to predict the influence of osmolytes on protein "
"stability, using the methods in: Auton M, Bolen DW. Predicting the "
"energetics of osmolyte-induced protein folding/unfolding. "
"*Proc Natl Acad Sci* 102:15065 (2005) "
"https://doi.org/10.1073/pnas.0507053102. Other models may be added "
"in the future."
),
python_requires=">=3.8",
license="CC0-1.0",
author="Nathan Baker",
author_email="[email protected]",
url="https://github.com/Electrostatics/osmolytes",
packages=setuptools.find_packages(),
package_data={
"": ["data/*.yaml", "tests/data/*.json", "tests/data/*.yaml"]
},
install_requires=["numpy", "scipy", "pyyaml", "pandas", "openpyxl"],
tests_require=["pytest"],
entry_points={"console_scripts": ["mvalue=osmolytes.main:console"]},
keywords="science chemistry biophysics biochemistry",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Common Public License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
],
)