|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=64", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "docker-enumsensitive" |
| 7 | +version = "0.1.0" |
| 8 | +description = "Docker Engine HTTP API enumeration helpers for env vars, secrets, and images." |
| 9 | +readme = { file = "README.MD", content-type = "text/markdown" } |
| 10 | +authors = [ |
| 11 | + { name = "Defensive Origins", email = "[email protected]" } |
| 12 | +] |
| 13 | +license = { text = "MIT" } # adjust if you intend a different license |
| 14 | +requires-python = ">=3.8" |
| 15 | + |
| 16 | +dependencies = [ |
| 17 | + "requests", |
| 18 | + "alive-progress" |
| 19 | +] |
| 20 | + |
| 21 | +keywords = [ |
| 22 | + "docker", |
| 23 | + "security", |
| 24 | + "enumeration", |
| 25 | + "api", |
| 26 | + "pentest", |
| 27 | + "red-team" |
| 28 | +] |
| 29 | + |
| 30 | +classifiers = [ |
| 31 | + "Development Status :: 3 - Alpha", |
| 32 | + "Intended Audience :: Information Technology", |
| 33 | + "Intended Audience :: System Administrators", |
| 34 | + "Intended Audience :: Developers", |
| 35 | + "Topic :: Security", |
| 36 | + "Topic :: System :: Systems Administration", |
| 37 | + "License :: OSI Approved :: MIT License", |
| 38 | + "Programming Language :: Python", |
| 39 | + "Programming Language :: Python :: 3", |
| 40 | + "Programming Language :: Python :: 3.8", |
| 41 | + "Programming Language :: Python :: 3.9", |
| 42 | + "Programming Language :: Python :: 3.10", |
| 43 | + "Programming Language :: Python :: 3.11", |
| 44 | + "Programming Language :: Python :: 3.12", |
| 45 | + "Environment :: Console", |
| 46 | + "Operating System :: OS Independent" |
| 47 | +] |
| 48 | + |
| 49 | +[project.urls] |
| 50 | +Homepage = "https://github.com/DefensiveOrigins/DockerEngineAPI-EnumSensitive" |
| 51 | +Source = "https://github.com/DefensiveOrigins/DockerEngineAPI-EnumSensitive" |
| 52 | +Issues = "https://github.com/DefensiveOrigins/DockerEngineAPI-EnumSensitive/issues" |
| 53 | + |
| 54 | +[project.scripts] |
| 55 | +docker-enum-envvars = "EnumEnvVars:main" |
| 56 | +docker-enum-secrets = "EnumSecrets:main" |
| 57 | +docker-enum-images = "EnumImages:main" |
| 58 | + |
| 59 | +[tool.setuptools] |
| 60 | +py-modules = ["EnumEnvVars", "EnumSecrets", "EnumImages"] |
0 commit comments