|
| 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 = "uncompyle6" |
| 14 | +description = "Python cross-version byte-code library and disassembler" |
| 15 | +dependencies = [ |
| 16 | + "click", |
| 17 | + "spark-parser >= 1.8.9, < 1.9.0", |
| 18 | + "xdis >= 6.0.8, < 6.2.0", |
| 19 | +] |
| 20 | +readme = "README.rst" |
| 21 | +license = {text = "GPL"} |
| 22 | +keywords = ["Python bytecode", "bytecode", "disassembler"] |
| 23 | +classifiers = [ |
| 24 | + "Development Status :: 5 - Production/Stable", |
| 25 | + "Intended Audience :: Developers", |
| 26 | + "License :: OSI Approved :: MIT License", |
| 27 | + "Programming Language :: Python", |
| 28 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 29 | + "Programming Language :: Python :: 2.4", |
| 30 | + "Programming Language :: Python :: 2.5", |
| 31 | + "Programming Language :: Python :: 2.6", |
| 32 | + "Programming Language :: Python :: 2.7", |
| 33 | + "Programming Language :: Python :: 3.0", |
| 34 | + "Programming Language :: Python :: 3.1", |
| 35 | + "Programming Language :: Python :: 3.2", |
| 36 | + "Programming Language :: Python :: 3.3", |
| 37 | + "Programming Language :: Python :: 3.4", |
| 38 | + "Programming Language :: Python :: 3.5", |
| 39 | + "Programming Language :: Python :: 3.6", |
| 40 | + "Programming Language :: Python :: 3.7", |
| 41 | + "Programming Language :: Python :: 3.8", |
| 42 | + "Programming Language :: Python :: 3.9", |
| 43 | + "Programming Language :: Python :: 3.10", |
| 44 | + "Programming Language :: Python :: 3.11", |
| 45 | + "Programming Language :: Python :: 3.12", |
| 46 | +] |
| 47 | +dynamic = ["version"] |
| 48 | + |
| 49 | +[project.urls] |
| 50 | +Homepage = "https://github.com/rocky/python-uncompyle6" |
| 51 | +Downloads = "https://github.com/rocky/python-uncompyle6/releases" |
| 52 | + |
| 53 | +[project.optional-dependencies] |
| 54 | +dev = [ |
| 55 | + "pre-commit", |
| 56 | + "pytest", |
| 57 | +] |
| 58 | + |
| 59 | +[project.scripts] |
| 60 | +uncompyle6 = "uncompyle6.bin.uncompile:main_bin" |
| 61 | +uncompyle6-tokenize = "uncompyle6.bin.pydisassemble:main" |
| 62 | + |
| 63 | +[tool.setuptools.dynamic] |
| 64 | +version = {attr = "uncompyle6.version.__version__"} |
0 commit comments