Skip to content

Commit ed34bb7

Browse files
committed
Moved the metadata into PEP 621-compliant pyproject.toml.
1 parent 4a822b3 commit ed34bb7

File tree

2 files changed

+47
-45
lines changed

2 files changed

+47
-45
lines changed

pyproject.toml

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,51 @@
11
[build-system]
2-
requires = ["setuptools>=42.1", "wheel", "setuptools_scm[toml]>=3.4.3"]
2+
requires = ["setuptools>=61.2", "wheel", "setuptools_scm[toml]>=3.4.3"]
33
build-backend = "setuptools.build_meta"
44

5+
[project]
6+
name = "exrex"
7+
authors = [{name = "Adam Tauber", email = "[email protected]"}]
8+
license = {text = "AGPL-3.0-or-later"}
9+
description = "Irregular methods for regular expressions"
10+
readme = "README.md"
11+
keywords = [
12+
"regexp",
13+
"generators",
14+
"string",
15+
"generation",
16+
"regex",
17+
"simplification",
18+
]
19+
classifiers = [
20+
"Development Status :: 4 - Beta",
21+
"Topic :: Utilities",
22+
"Environment :: Console",
23+
"License :: OSI Approved :: GNU Affero General Public License v3",
24+
"Programming Language :: Python",
25+
"Programming Language :: Python :: 2",
26+
"Programming Language :: Python :: 2.6",
27+
"Programming Language :: Python :: 2.7",
28+
"Programming Language :: Python :: 3",
29+
"Programming Language :: Python :: 3.3",
30+
"Programming Language :: Python :: 3.4",
31+
"Programming Language :: Python :: 3.5",
32+
]
33+
dependencies = []
34+
dynamic = ["version"]
35+
36+
[project.urls]
37+
Homepage = "https://github.com/asciimoo/exrex"
38+
Download = "https://github.com/asciimoo/exrex/tarball/master"
39+
40+
[project.scripts]
41+
exrex = "exrex:__main__"
42+
43+
[tool.setuptools]
44+
py-modules = ["exrex"]
45+
include-package-data = true
46+
47+
[tool.setuptools.packages.find]
48+
exclude = ["tests"]
49+
namespaces = false
50+
551
[tool.setuptools_scm]

setup.cfg

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)