-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[build] finalize pypi publishing workflow
- Loading branch information
1 parent
cccbf97
commit 2a1db34
Showing
4 changed files
with
64 additions
and
18 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,13 @@ | ||
prune test | ||
prune .git | ||
prune .github | ||
prune doc | ||
prune share | ||
prune Docker | ||
prune deps | ||
prune packaging | ||
prune paper | ||
prune bin | ||
prune build | ||
|
||
global-exclude .clang-format .clang-tidy .dockerignore .gitignore CMakeLists.txt Jenkinsfile |
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,36 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["python"] | ||
|
||
[project] | ||
name = "triqs_maxent" | ||
version = "@PROJECT_VERSION@" | ||
authors = [ | ||
{ name="TRIQS", email="[email protected]" } | ||
] | ||
description = "TRIQS application providing a modular Maximum Entropy progra to perform analytic continuation based on the TRIQS library (triqs.github.io)" | ||
readme = "README.md" | ||
keywords = ["triqs", "analytic-continuation", "maximum-entropy"] | ||
requires-python = ">=3.7" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies = [ | ||
"numpy", | ||
"scipy", | ||
"matplotlib" | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://triqs.github.io/maxent" | ||
"Bug Tracker" = "https://github.com/triqs/maxent/issues" | ||
|
||
# in case you want an executable hook of your app | ||
# [project.scripts] | ||
# solid_dmft = "solid_dmft.main:main" | ||
|