|
1 | 1 | [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"] |
3 | 3 | build-backend = "setuptools.build_meta"
|
4 | 4 |
|
| 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 | + |
5 | 51 | [tool.setuptools_scm]
|
0 commit comments