forked from jvalegre/aqme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (52 loc) · 1.86 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
from setuptools import setup, find_packages
version = "1.5.3"
setup(
name="aqme",
packages=find_packages(exclude=["tests"]),
package_data={"aqme": ["templates/*"]},
version=version,
license="MIT",
description="Automated Quantum Mechanical Environments",
long_description="Documentation in Read The Docs: https://aqme.readthedocs.io",
long_description_content_type="text/markdown",
author="Shree Sowndarya S. V., Juan V. Alegre Requena",
author_email="[email protected], [email protected]",
keywords=[
"workflows",
"computational chemistry",
"conformational sampling",
"cheminformatics",
"quantum mechanics",
"DFT",
"automated",
],
url="https://github.com/jvalegre/aqme",
download_url=f"https://github.com/jvalegre/aqme/archive/refs/tags/{version}.tar.gz",
classifiers=[
"Development Status :: 5 - Production/Stable", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Developers", # Define that your audience are developers
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7", # Specify which python versions you want to support
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
install_requires=[
"PyYAML",
"pandas>=2.0.2",
"progress",
"ase",
"numpy==1.26.4",
"cclib==1.7.2",
"matplotlib",
"seaborn",
"cffi",
"goodvibes",
"py3Dmol",
"ipywidgets",
"dbstep"
],
python_requires=">=3.0",
include_package_data=True,
)