Skip to content

Commit

Permalink
Move project metadata to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
EpicWink committed Oct 30, 2024
1 parent 77d4826 commit 6f5cfde
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 29 deletions.
30 changes: 28 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,34 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 42.0",
"setuptools >= 61.0",
"setuptools-scm[toml] >= 3.4",
]

[tool.setuptools_scm]
[project]
name = "swf-typed"

authors = [
{ name = "Laurie", email = "[email protected]" },
]
dependencies = [
"boto3 ~= 1.18",
]
description = "Typed Python interface to AWS Simple Workflow service"
keywords = ["swf", "typed"]
license = { text = "MIT" }
readme = "README.md"
requires-python = "~= 3.7"

dynamic = ["version"]

[project.urls]
Changelog = "https://github.com/EpicWink/python-swf-typed/releases"
Documentation = "https://python-swf-typed.readthedocs.io/"
Source = "https://github.com/EpicWink/python-swf-typed"
Tracker = "https://github.com/EpicWink/python-swf-typed/issues"

[tool.setuptools]
include-package-data = false
package-dir = { "" = "src" }
packages = { find = { namespaces = false, where = ["src"] } }
27 changes: 0 additions & 27 deletions setup.cfg

This file was deleted.

0 comments on commit 6f5cfde

Please sign in to comment.