-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (25 loc) · 954 Bytes
/
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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="cgdms",
version="1.0",
author="Joe G Greener",
author_email="j.greener@ucl.ac.uk",
description="Differentiable molecular simulation of proteins with a coarse-grained potential",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/psipred/cgdms",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
license="MIT",
keywords="protein potential force-field coarse-grained automatic-differentiation",
scripts=["bin/cgdms"],
install_requires=["numpy", "biopython", "PeptideBuilder", "colorama"],
include_package_data=True,
)