-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
46 lines (46 loc) · 1.64 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
from setuptools import setup, find_packages
version = "1.7.1"
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="Juan V. Alegre Requena",
author_email="[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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
install_requires=[
"PyYAML",
"pandas==2.2.2",
"progress",
"numpy==1.26.4",
"rdkit==2024.3.3",
"cclib==1.7.2",
"cffi",
"morfeus-ml==0.7.2"
],
python_requires=">=3.10",
include_package_data=True,
)