|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools>=61.2", |
| 4 | +] |
| 5 | + |
| 6 | +build-backend = "setuptools.build_meta" |
| 7 | + |
| 8 | +[project] |
| 9 | +authors = [ |
| 10 | + {name = "Rocky Bernstein", email = "rb@dustyfeet.com"}, |
| 11 | +] |
| 12 | + |
| 13 | +name = "xdis" |
| 14 | +description = "Python cross-version byte-code library and disassembler" |
| 15 | +dependencies = [ |
| 16 | + "click", |
| 17 | + "pygments", |
| 18 | + "xdis >= 6.0.0, < 6.2.0", |
| 19 | + "term-background >= 1.0.1", |
| 20 | + "six >= 1.10.0", |
| 21 | +] |
| 22 | +readme = "README.rst" |
| 23 | +license = {text = "GPL"} |
| 24 | +keywords = ["Python bytecode", "bytecode", "disassembler"] |
| 25 | +classifiers = [ |
| 26 | + "Development Status :: 5 - Production/Stable", |
| 27 | + "Intended Audience :: Developers", |
| 28 | + "License :: OSI Approved :: MIT License", |
| 29 | + "Programming Language :: Python", |
| 30 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 31 | + "Programming Language :: Python :: 2.4", |
| 32 | + "Programming Language :: Python :: 2.5", |
| 33 | + "Programming Language :: Python :: 2.6", |
| 34 | + "Programming Language :: Python :: 2.7", |
| 35 | + "Programming Language :: Python :: 3.0", |
| 36 | + "Programming Language :: Python :: 3.1", |
| 37 | + "Programming Language :: Python :: 3.2", |
| 38 | + "Programming Language :: Python :: 3.3", |
| 39 | + "Programming Language :: Python :: 3.4", |
| 40 | + "Programming Language :: Python :: 3.5 ", |
| 41 | + "Programming Language :: Python :: 3.6 ", |
| 42 | + "Programming Language :: Python :: 3.7 ", |
| 43 | + "Programming Language :: Python :: 3.8 ", |
| 44 | + "Programming Language :: Python :: 3.9 ", |
| 45 | + "Programming Language :: Python :: 3.10 ", |
| 46 | + "Programming Language :: Python :: 3.11 ", |
| 47 | + "Programming Language :: Python :: 3.12 ", |
| 48 | +] |
| 49 | +dynamic = ["version"] |
| 50 | + |
| 51 | +[project.urls] |
| 52 | +Homepage = "https://github.com/rocky/python-xdis" |
| 53 | +Downloads = "https://github.com/rocky/python-xdis/releases" |
| 54 | + |
| 55 | +[project.optional-dependencies] |
| 56 | +dev = [ |
| 57 | + "pre-commit", |
| 58 | + "pytest", |
| 59 | +] |
| 60 | + |
| 61 | +[project.scripts] |
| 62 | +pydisasm = "xdis.bin.pydisasm:main" |
| 63 | + |
| 64 | +[tool.setuptools.dynamic] |
| 65 | +version = {attr = "xdis.version.__version__"} |
0 commit comments