Skip to content

Moved the metadata into PEP 621-compliant pyproject.toml. #61

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion MANIFEST.in

This file was deleted.

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

[project]
name = "exrex"
authors = [{name = "Adam Tauber", email = "[email protected]"}]
license = {text = "AGPL-3.0-or-later"}
description = "Irregular methods for regular expressions"
readme = "README.md"
keywords = [
"regexp",
"generators",
"string",
"generation",
"regex",
"simplification",
]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Environment :: Console",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
]
dependencies = []
dynamic = ["version"]

[project.urls]
Homepage = "https://github.com/asciimoo/exrex"
Download = "https://github.com/asciimoo/exrex/tarball/master"

[project.scripts]
exrex = "exrex:__main__"

[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["exrex"]
include-package-data = true

[tool.setuptools.packages.find]
exclude = ["tests"]
namespaces = false

[tool.setuptools_scm]
126 changes: 0 additions & 126 deletions setup.py

This file was deleted.

File renamed without changes.
7 changes: 0 additions & 7 deletions tox.ini

This file was deleted.