-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.47 KB
/
setup.py
File metadata and controls
47 lines (45 loc) · 1.47 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'mdpy',
version = '0.2.1',
author = 'Zhenyu Wei',
author_email = 'zhenyuwei99@gmail.com',
description = 'MDPy is a python framework for conducting highly extensible and flexible molecular dynamics simulation',
long_description = long_description,
long_description_content_type = "text/markdown",
keywords = 'Peptide dynamics simulation package',
classifiers = [
'Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Chemistry',
'License :: OSI Approved :: BSD',
'Programming Language :: Python :: 3.9'
],
url = 'https://mdpy.net/',
project_urls = {
"Documentation": "https://mdpy.net/",
"Source Code": "https://github.com/mdpy-dev/mdpy",
},
packages = find_packages(),
package_data = {
"mdpy": [
"test/data/*",
]
},
# setup_requires = ['pytest-runner'],
tests_require = ['pytest', 'pytest-xdist'],
install_requires = [
'numpy >= 1.20.0',
'scipy >= 1.7.0',
'numba >= 0.54.0',
'matplotlib >= 3.0.0',
'pytest >= 6.2.0',
'pytest-xdist >= 2.3.0',
'MDAnalysis >= 2.0.0',
'h5py >= 3.6.0'
],
python_requires = '>=3.9'
)