forked from troyvvgroup/quemb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 890 Bytes
/
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
# Read the contents of your README file
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="quemb",
version="1.0",
description="QuEmb: A framework for efficient simulation of large molecules, "
"surfaces, and solids via Bootstrap Embedding",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/oimeitei/quemb",
license="Apache 2.0",
packages=find_packages("src"),
package_dir={"": "src"},
python_requires=">=3.7",
install_requires=[
"numpy>=1.22.0",
"scipy>=1.7.0",
"pyscf>=2.0.0",
"matplotlib",
"libdmet @ git+https://github.com/gkclab/libdmet_preview.git",
"attrs",
"typing_extensions",
],
)