|
1 | | -[metadata] |
2 | | -name = 'binary' |
3 | | -version = '0.0.1' |
4 | | -description = '' |
5 | | -author = 'Ofek Lev' |
6 | | -author_email = 'ofekmeister@gmail.com' |
7 | | -license = 'MIT/Apache-2.0' |
8 | | -url = 'https://github.com/ofek/binary' |
| 1 | +[build-system] |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
9 | 4 |
|
10 | | -[requires] |
11 | | -python_version = ['3.7', '3.8', '3.9', '3.10', 'pypy3'] |
| 5 | +[project] |
| 6 | +name = "binary" |
| 7 | +dynamic = ["version"] |
| 8 | +readme = "README.rst" |
| 9 | +license = "MIT OR Apache-2.0" |
| 10 | +requires-python = ">=3.9" |
| 11 | +authors = [ |
| 12 | + { name = "Ofek Lev", email = "oss@ofek.dev" }, |
| 13 | +] |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 4 - Beta", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "Natural Language :: English", |
| 18 | + "Operating System :: OS Independent", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3 :: Only", |
| 21 | + "Programming Language :: Python :: 3.9", |
| 22 | + "Programming Language :: Python :: 3.10", |
| 23 | + "Programming Language :: Python :: 3.11", |
| 24 | + "Programming Language :: Python :: 3.12", |
| 25 | + "Programming Language :: Python :: 3.13", |
| 26 | + "Programming Language :: Python :: Implementation :: CPython", |
| 27 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 28 | +] |
12 | 29 |
|
13 | | -[build-system] |
14 | | -requires = ['setuptools', 'wheel'] |
| 30 | +[project.urls] |
| 31 | +Homepage = "https://github.com/ofek/binary" |
| 32 | + |
| 33 | +[tool.hatch.version] |
| 34 | +path = "binary/__init__.py" |
15 | 35 |
|
16 | | -[tool.hatch.commands] |
17 | | -prerelease = 'hatch build' |
| 36 | +[tool.hatch.build.targets.sdist] |
| 37 | +include = [ |
| 38 | + "/binary", |
| 39 | +] |
18 | 40 |
|
19 | 41 | [tool.mypy] |
20 | 42 | pretty = true |
|
0 commit comments