-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(main): switch pytest to importlib
- Loading branch information
1 parent
068d4b3
commit 4461a88
Showing
1 changed file
with
15 additions
and
15 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 |
---|---|---|
|
@@ -6,30 +6,27 @@ build-backend = "setuptools.build_meta" | |
name = "openhexa.toolbox" | ||
version = "0.1.4" | ||
description = "A set of tools to acquire & process data from various sources" | ||
authors = [ | ||
{ name = "Bluesquare", email = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{ name = "Bluesquare", email = "[email protected]" } | ||
] | ||
authors = [{ name = "Bluesquare", email = "[email protected]" }] | ||
maintainers = [{ name = "Bluesquare", email = "[email protected]" }] | ||
license = { file = "LICENSE" } | ||
readme = "README.md" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent" | ||
"Operating System :: OS Independent", | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"requests", | ||
"python-dateutil", | ||
"pandas", | ||
"polars", | ||
"diskcache" | ||
] | ||
dependencies = ["requests", "python-dateutil", "pandas", "polars", "diskcache"] | ||
|
||
[project.optional-dependencies] | ||
dev = ["ruff~=0.0.278", "pytest~=7.3.0", "build~=0.10.0", "pytest-cov~=4.0.0" , "black~=23.7.0", "pre-commit"] | ||
dev = [ | ||
"ruff~=0.0.278", | ||
"pytest~=7.3.0", | ||
"build~=0.10.0", | ||
"pytest-cov~=4.0.0", | ||
"black~=23.7.0", | ||
"pre-commit", | ||
] | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
|
@@ -47,3 +44,6 @@ line-length = 120 | |
|
||
[tool.ruff.pycodestyle] | ||
max-doc-length = 120 | ||
|
||
[tool.pytest.ini_options] | ||
addopts = ["--import-mode=importlib"] |