Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move optional dependencies from dev_requirements to pyproject.toml #474

Merged
merged 15 commits into from
Sep 24, 2024
Merged
22 changes: 15 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
name = "ahbicht"
description = "Description of your package"
description = "Python Library to parse AHB expressions"
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [{ name = "Hochfrequenz Unternehmensberatungs GmbH", email = "ahbicht@hochfrequenz.de" }]
authors = [{ name = "Annika Schlögl", email = "annika.schloegl@hochfrequenz.de" }]
keywords = ["your", "important", "keywords"]
classifiers = [
"Development Status :: 4 - Beta",
Expand All @@ -18,7 +18,16 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [] # add all the dependencies here
dependencies = [
"attrs",
"lark>=1.1.4",
"inject",
"marshmallow",
"marshmallow_enum",
"maus>=0.6.0",
"efoli>=1.1.0",
"pytz"
] # add all the dependencies here
dynamic = ["readme", "version"]

[project.optional-dependencies]
Expand Down Expand Up @@ -66,13 +75,12 @@ dev = [
[project.urls]
Changelog = "https://github.com/Hochfrequenz/ahbicht/releases"
Homepage = "https://github.com/Hochfrequenz/ahbicht"
Documetnation = "https://ahbicht.readthedocs.io/en/latest/"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Documetnation = "https://ahbicht.readthedocs.io/en/latest/"
Documentation = "https://ahbicht.readthedocs.io/en/latest/"



[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
requires = ["hatchling>=1.8.0", "hatch-vcs", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"

[tool.black]
line-length = 120
Expand Down
48 changes: 0 additions & 48 deletions setup.cfg

This file was deleted.

Loading