Skip to content

Commit

Permalink
Switch from using setup.py to using pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
cuu508 committed Nov 4, 2024
1 parent 2b67279 commit 31ba43d
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 44 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
__pycache__
cronsim.egg-info
dist
venv
stash
venv
.venv
1 change: 0 additions & 1 deletion MANIFEST.in

This file was deleted.

30 changes: 30 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "cronsim"
version = "2.7-dev"
authors = [{ name = "Pēteris Caune", email = "[email protected]" }]
description = "Cron expression parser and evaluator"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["cron", "cronjob", "crontab", "schedule"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]

[project.urls]
Repository = "https://github.com/cuu508/cronsim.git"
Issues = "https://github.com/cuu508/cronsim/issues"
Changelog = "https://github.com/cuu508/cronsim/blob/main/CHANGELOG.md"

[tool.setuptools]
packages = ["cronsim"]
42 changes: 0 additions & 42 deletions setup.py

This file was deleted.

0 comments on commit 31ba43d

Please sign in to comment.