Skip to content

Commit

Permalink
modernize
Browse files Browse the repository at this point in the history
  • Loading branch information
dstathis committed Dec 16, 2024
1 parent 5cc6ac9 commit ed068cd
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fastprocess/__pycache__/
build
venv
dist
*.egg-info
.venv
2 changes: 2 additions & 0 deletions fastprocess/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from fastprocess.fastprocess import FastProcess

__version__ = '2.1.0'
28 changes: 28 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
dynamic = ["version"]
name = "fastprocess"
authors = [
{name = "Dylan Stephano-Shachter", email = "[email protected]"}
]
description = "A fast subprocess library"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python",
"Operating System :: POSIX",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules",
]

[project.urls]
homepage = "https://github.com/dstathis/fastprocess"
issues = "https://github.com/dstathis/fastprocess/issues"


[tool.hatch.version]
path = "fastprocess/__init__.py"
25 changes: 0 additions & 25 deletions setup.py

This file was deleted.

0 comments on commit ed068cd

Please sign in to comment.