-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
53 lines (52 loc) · 1.26 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
from setuptools import setup
import versioneer
setup(
name="ParaTemp",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=["paratemp"],
scripts=["scripts/check-convergence.py"],
package_data={"paratemp": ["sim_setup/SimpleSim_data/*"]},
url="https://github.com/theavey/ParaTemp",
license="Apache License 2.0",
author="Thomas Heavey",
author_email="thomasjheavey@gmail.com",
description="Scripts for molecular dynamics analysis and parallel "
"tempering in GROMACS",
install_requires=[
"MDAnalysis>=0.17.0",
"pandas",
"numpy",
"matplotlib",
"parmed",
"panedr",
"gromacswrapper>=0.7",
"tables",
"scipy",
"six",
"py",
],
extras_require={
"docs": [
"sphinx",
],
"tests": [
"pytest>=3.9",
"pytest-cov",
"coveralls",
"py",
],
},
tests_require=[
"pytest>=3.9",
"pytest-cov",
"coveralls",
"py",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
],
zip_safe=True,
)