-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (58 loc) · 1.86 KB
/
setup.py
File metadata and controls
60 lines (58 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup, find_packages
# Read the contents of the README file
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
# Define the package metadata
setup(
name="quantumresponsepro",
version="0.1.0",
author="Adrian Hurtado",
author_email="ahurta92@gmail.com",
description="A molecular analysis tool for computing and analyzing dynamic response properties using MADNESS and "
"dalton quantum chemistry packages",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/quantumresponsepro",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="quantum chemistry, molecular analysis, TDDFT, TDHF, MADNESS, dalton",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.6",
install_requires=[
"numpy",
"scipy",
"pandas",
"jupyter",
"matplotlib",
"seaborn",
"pytest",
"vtk",
"scikit-learn",
"plotly",
"pyarrow",
"mergedeep",
# Add any other required dependencies here
],
extras_require={
"dev": [
"pytest",
# Add any other development dependencies here
],
},
entry_points={
"console_scripts": [
# Define any command-line scripts here, e.g.
# "quantumresponsepro=quantumresponsepro.cli:main",
],
},
)