-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
pyproject.toml
to install utilix (#126)
* Use `pyproject.toml` to install utilix * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Remove usage of setup.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Minor change * Add utilix authors * To include all files in `utilix` folder --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
f2a9956
commit 9d87d87
Showing
7 changed files
with
65 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
[bumpversion] | ||
current_version = 0.8.5 | ||
files = setup.py utilix/__init__.py | ||
files = utilix/__init__.py | ||
commit = True | ||
tag = True | ||
|
||
[bumpversion:file:pyproject.toml] | ||
search = version = "{current_version}" | ||
replace = version = "{new_version}" |
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
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,48 @@ | ||
[tool] | ||
[tool.poetry] | ||
name = "utilix" | ||
version = "0.8.5" | ||
description = "User-friendly interface to various utilities for XENON users" | ||
readme = "README.md" | ||
authors = [ | ||
"utilix developers", | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: BSD License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
] | ||
repository = "https://github.com/XENONnT/utilix" | ||
packages = [ | ||
{ include = "utilix" } | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<3.13" | ||
pymongo = "*" | ||
requests = "*" | ||
tqdm = "*" | ||
pandas = "*" | ||
commentjson = "*" | ||
simple_slurm = "*" | ||
pydantic = ">=1.10,<2.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.8", "setuptools>=61.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.black] | ||
line-length = 100 | ||
preview = true | ||
|
||
[tool.docformatter] | ||
recursive = true | ||
in-place = true | ||
wrap-summaries = 100 | ||
wrap-descriptions = 100 | ||
blank = true |
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