|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools", "wheel"] |
| 2 | +requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
3 | 4 |
|
4 | 5 | [tool.coverage.run] |
5 | 6 | branch = true |
6 | 7 | source = ["src/"] |
7 | 8 |
|
8 | 9 | [tool.mypy] |
9 | 10 | files = ["*.py", "test/", "src/"] |
| 11 | + |
| 12 | +[project] |
| 13 | +name = "uuid6" |
| 14 | +dynamic = ["version"] |
| 15 | +description = "New time-based UUID formats which are suited for use as a database key" |
| 16 | +readme = "README.md" |
| 17 | +authors = [ |
| 18 | + {name = "Oittaa"} |
| 19 | +] |
| 20 | +requires-python = ">=3.9" |
| 21 | +license = {text = "MIT"} |
| 22 | +classifiers = [ |
| 23 | + "Development Status :: 4 - Beta", |
| 24 | + "Intended Audience :: Developers", |
| 25 | + "License :: OSI Approved :: MIT License", |
| 26 | + "Operating System :: OS Independent", |
| 27 | + "Programming Language :: Python", |
| 28 | + "Programming Language :: Python :: 3", |
| 29 | + "Programming Language :: Python :: 3.9", |
| 30 | + "Programming Language :: Python :: 3.10", |
| 31 | + "Programming Language :: Python :: 3.11", |
| 32 | + "Programming Language :: Python :: 3.12", |
| 33 | + "Programming Language :: Python :: 3.13", |
| 34 | +] |
| 35 | +keywords = [ |
| 36 | + "uuid", |
| 37 | + "uuid6", |
| 38 | + "uuid7", |
| 39 | + "uuid8", |
| 40 | + "uuidv6", |
| 41 | + "uuidv7", |
| 42 | + "uuidv8", |
| 43 | +] |
| 44 | + |
| 45 | +[project.urls] |
| 46 | +"Homepage" = "https://github.com/oittaa/uuid6-python" |
| 47 | +"Bug Tracker" = "https://github.com/oittaa/uuid6-python/issues" |
| 48 | + |
| 49 | +[tool.setuptools] |
| 50 | +package-dir = {"" = "src"} |
| 51 | + |
| 52 | +[tool.setuptools.packages.find] |
| 53 | +where = ["src"] |
| 54 | + |
| 55 | +[tool.setuptools.package-data] |
| 56 | +"*" = ["py.typed"] |
| 57 | + |
| 58 | +[tool.setuptools_scm] |
0 commit comments