Skip to content

Commit

Permalink
pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ondratu committed May 24, 2023
1 parent dd29e1b commit 591484e
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
[project]
name = "prusa.connect.sdk.printer"
description = "Python printer library for PrusaConnect"
readme = "README.rst"
license = {text = "Freeware"}

authors = [
{name = "Prusa Link Developers", email = "[email protected]"},
]
maintainers = [
{name = "Ondřej Tůma", email = "[email protected]"},
{name = "Michal Zoubek", email = "[email protected]"},
{name = "Tomáš Jozífek", email = "[email protected]"}
]

requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: Freeware",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = [
"version",
"dependencies",
]

[project.urls]
"Repository" = "https://github.com/prusa3d/Prusa-Connect-SDK-Printer"
"Bug Tracker" = "https://github.com/prusa3d/Prusa-Connect-SDK-Printer/issues"

[tool.setuptools]
packages = ["prusa.connect.printer"]

[tool.setuptools.package-data]
"prusa.connect.printer" = ["py.typed"]

[tool.ruff]
select = [
"F", # pyflakes
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def doc():
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.6",
python_requires=">=3.9",
install_requires=REQUIRES,
tests_require=[
'pytest',
Expand Down

0 comments on commit 591484e

Please sign in to comment.