-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
20 lines (18 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read().decode("UTF-8")
setup(name="satumut", author="Ruite Xiang", author_email="[email protected]",
description="Study the effects of mutations on Protein-Ligand interactions",
url="https://github.com/etiur/satumut", license="MIT", version="0.0.1",
packages=find_packages(), python_requires=">=2.7, <3.0", long_description=long_description,
long_description_content_type="text/markdown",
classifiers=["Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Environment :: Console",
"Development Status :: 1 - Planning",
"Topic :: Scientific/Engineering :: Bio-Informatics"],
install_requires=["pmx", "fpdf", "matplotlib", "numpy", "pandas", "seaborn"],
keywords="protein engineering, bioinformatics, mutate proteins, simulations")