Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 13, 2024
1 parent 8b9043d commit f9c5c4e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 37 deletions.
39 changes: 19 additions & 20 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"setuptools-scm[toml]>=6.2",
]

[project]
name = "pydeps2env"
description = "A python helper to generate conda environment files from project dependencies."
readme = {file = "README.md", content-type="text/markdown"}
readme = { file = "README.md", content-type = "text/markdown" }
keywords = [
"conda",
"pyproject",
]
license = {file = "LICENSE", name="BSD License"}
license = { file = "LICENSE", name = "BSD License" }
authors = [
{name="Çağtay Fabry", email="cagtay.fabry@bam.de"},
{ name = "Çağtay Fabry", email = "cagtay.fabry@bam.de" },
]
requires-python = ">=3.9"
classifiers = [
Expand All @@ -31,29 +38,21 @@ dynamic = [
dependencies = [
"packaging",
"pyyaml",
'tomli; python_version < "3.11"',
"tomli; python_version<'3.11'",
]
[project.optional-dependencies]
test = [
optional-dependencies.test = [
# needed to run the test suite
"pytest",
"pytest-cov",
]
[project.urls]
bug_tracker = "https://github.com/CagtayFabry/pydeps2env/-/issues"
repository = "https://github.com/CagtayFabry/pydeps2env"
[project.scripts]
pydeps2env = "pydeps2env.generate_environment:main"

[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"setuptools_scm[toml]>=6.2",
]

urls.bug_tracker = "https://github.com/CagtayFabry/pydeps2env/-/issues"
urls.repository = "https://github.com/CagtayFabry/pydeps2env"
scripts.pydeps2env = "pydeps2env.generate_environment:main"
[tool.setuptools.packages]
find = {exclude = ["test", "resources"]}
find = { exclude = [
"test",
"resources",
] }

[tool.setuptools_scm]
write_to = "pydeps2env/_version.py"
32 changes: 15 additions & 17 deletions test/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=40.9",
"setuptools-scm",
"wheel",
]

[project]
name = "test"
requires-python = ">=3.8,<3.10"
Expand All @@ -8,29 +16,19 @@ classifiers = [
]
dependencies = [
"boltons",
"IPython",
"ipython",
"numpy>=1.20",
"pandas>=1",
]
[project.optional-dependencies]
doc = [
optional-dependencies.doc = [
"sphinx",
]
pip_only = [
optional-dependencies.pip_only = [
"bidict",
]
test = [
optional-dependencies.test = [
"pytest",
]
[project.urls]
author = "Cagtay Fabry <cagtay.fabry@bam.de>"
author_email = "cagtay.fabry@bam.de"
home_page = "https://github.com/CagtayFabry/pydeps2env"

[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=40.9",
"setuptools_scm",
"wheel",
]
urls.author = "Cagtay Fabry <cagtay.fabry@bam.de>"
urls.author_email = "cagtay.fabry@bam.de"
urls.home_page = "https://github.com/CagtayFabry/pydeps2env"

0 comments on commit f9c5c4e

Please sign in to comment.