-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from mcocdawc/enable_pip_install
Enable pip install
- Loading branch information
Showing
3 changed files
with
71 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
include = ["libdmet*"] | ||
exclude = [] | ||
namespaces = false | ||
|
||
|
||
[project] | ||
name = "libdmet" | ||
version = "0.5" | ||
dependencies = ["pyscf>=2.0", "numpy", "scipy", "h5py"] | ||
requires-python = ">= 3.1" | ||
authors = [ | ||
{name = "Zhihao Cui", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Zhihao Cui", email = "[email protected]"}, | ||
] | ||
description = "A library of density matrix embedding theory (DMET) for lattice models and realistic solids." | ||
readme = "README.md" | ||
classifiers = [ | ||
# How mature is this project? Common values are | ||
# 3 - Alpha | ||
# 4 - Beta | ||
# 5 - Production/Stable | ||
"Development Status :: 4 - Beta", | ||
|
||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Build Tools", | ||
|
||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
|
||
"Programming Language :: Python :: 3", | ||
] | ||
|
||
|
||
[project.urls] | ||
Repository = "https://github.com/gkclab/libdmet_preview" | ||
"Bug Tracker" = "https://github.com/gkclab/libdmet_preview/issues" |