Skip to content

Commit

Permalink
Migrate to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Athesdrake committed Jun 16, 2024
1 parent d8a8301 commit 6643da2
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 38 deletions.
2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

38 changes: 38 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[project]
name = "aiotfm"
description = "An asynchronous event based client for Transformice"
requires-python = ">=3.8"
license = { file = "LICENSE.txt" }
keywords = ["TRANFORMICE", "CLIENT", "ASYNC", "ATELIER801", "EVENT"]
authors = [{ name = "Athesdrake" }]
maintainers = [{ name = "Athesdrake", email = "athesdrake@gmail.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = ["aiohttp"]
dynamic = ["version", "readme"]

[project.optional-dependencies]
dev = ["pytest", "ruff"]

[project.urls]
"Homepage" = "https://github.com/Athesdrake/aiotfm"
"Bug Reports" = "https://github.com/Athesdrake/aiotfm/issues"
"Source" = "https://github.com/Athesdrake/aiotfm"

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.setuptools.dynamic]
version = { attr = "aiotfm.__version__.__version__" }
readme = { file = ["README.md"] }
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

35 changes: 0 additions & 35 deletions setup.py

This file was deleted.

0 comments on commit 6643da2

Please sign in to comment.