-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 910 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 910 Bytes
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
from setuptools import setup, find_packages
setup(
name="AutoCYPAmber",
version="1.0.0",
author="Ziyan Zhuang, Qianyu Zhao",
description="Autonomous Orchestration for High-Fidelity Cytochrome P450 and Ligand MD Simulations",
packages=find_packages(include=["acypa", "acypa.*"]),
include_package_data=True,
package_data={
"acypa": [
"data/heme_params/*/*.mol2",
"data/heme_params/*/*.frcmod",
]
},
install_requires=[
"numpy",
"scipy",
"matplotlib",
"PyYAML",
"pyscf"
],
classifiers=[
"Intended Audience :: Science/Research",
"License :: Free for non-commercial use",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
],
python_requires='>=3.8',
)