Skip to content

Commit

Permalink
Switch from setup.py to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-pond committed Mar 26, 2024
1 parent b01b8ef commit 381314f
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
20 changes: 20 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[project]
name = "temporal"
authors = [
{ name = "Datahenge LLC", email = "[email protected]"},
]
description = "Time after Time"
requires-python = ">=3.10"
readme = "README.md"
dynamic = [
"version"
]
license = {text = "GNU LESSER GENERAL PUBLIC LICENSE"}
dependencies = [
]

[tool.setuptools]
py-modules = ["temporal"]

[tool.setuptools.dynamic]
version = {attr = "temporal.__version__"}
3 changes: 0 additions & 3 deletions requirements.txt

This file was deleted.

File renamed without changes.
5 changes: 0 additions & 5 deletions temporal/__init__.pyi

This file was deleted.

0 comments on commit 381314f

Please sign in to comment.