|
| 1 | +[project] |
| 2 | +name = "pypcode" |
| 3 | +description = "Machine code disassembly and IR translation library" |
| 4 | +license = { file = "LICENSE.txt" } |
| 5 | +readme = { file = "README.md", content-type = "text/markdown" } |
| 6 | +classifiers = [ |
| 7 | + "Programming Language :: Python", |
| 8 | + "Programming Language :: Python :: 3", |
| 9 | + "Programming Language :: Python :: 3 :: Only", |
| 10 | + "Programming Language :: Python :: 3.10", |
| 11 | + "Programming Language :: Python :: 3.11", |
| 12 | + "Programming Language :: Python :: 3.12", |
| 13 | + "Programming Language :: Python :: 3.13", |
| 14 | +] |
| 15 | +requires-python = ">=3.10" |
| 16 | +dynamic = [ "version" ] |
| 17 | + |
| 18 | +[project.urls] |
| 19 | +Homepage = "https://api.angr.io/projects/pypcode/en/latest/" |
| 20 | +Repository = "https://github.com/angr/pypcode" |
| 21 | + |
| 22 | +[project.optional-dependencies] |
| 23 | +docs = [ |
| 24 | + "furo", |
| 25 | + "ipython", |
| 26 | + "myst-parser", |
| 27 | + "sphinx", |
| 28 | + "sphinx-autodoc-typehints", |
| 29 | +] |
| 30 | + |
1 | 31 | [build-system]
|
2 |
| -requires = ["setuptools", "nanobind", "cmake"] |
| 32 | +requires = [ "setuptools", "nanobind", "cmake" ] |
3 | 33 | build-backend = "setuptools.build_meta"
|
4 | 34 |
|
| 35 | +[tool.setuptools] |
| 36 | +dynamic = { version = { attr = "pypcode.__version__.__version__" } } |
| 37 | +packages = [ "pypcode" ] |
| 38 | +ext-modules = [ |
| 39 | + { name = "pypcode.pypcode_native", sources = [] } |
| 40 | +] |
| 41 | + |
5 | 42 | [tool.black]
|
6 | 43 | line-length = 120
|
7 | 44 | target-version = ['py38']
|
|
0 commit comments