|
1 | | -# plux project configuration |
| 1 | +[build-system] |
| 2 | +requires = ['hatchling'] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "plux" |
| 7 | +authors = [ |
| 8 | + { name = "Thomas Rausch", email = "info@localstack.cloud" } |
| 9 | +] |
| 10 | +description = "A dynamic code loading framework for building pluggable Python distributions" |
| 11 | +readme = "README.md" |
| 12 | +license = "Apache-2.0" |
| 13 | +classifiers = [ |
| 14 | + "Development Status :: 5 - Production/Stable", |
| 15 | + "License :: OSI Approved :: Apache Software License", |
| 16 | + "Operating System :: OS Independent", |
| 17 | + "Programming Language :: Python :: 3", |
| 18 | + "Programming Language :: Python :: 3.10", |
| 19 | + "Programming Language :: Python :: 3.11", |
| 20 | + "Programming Language :: Python :: 3.12", |
| 21 | + "Programming Language :: Python :: 3.13", |
| 22 | + "Topic :: Software Development :: Libraries", |
| 23 | + "Topic :: Utilities" |
| 24 | +] |
| 25 | +requires-python = ">=3.10" |
| 26 | +dynamic = ["version"] |
| 27 | + |
| 28 | +[project.urls] |
| 29 | +Repository = "https://github.com/localstack/plux" |
| 30 | + |
| 31 | +[project.optional-dependencies] |
| 32 | +dev = [ |
| 33 | + "build", |
| 34 | + "setuptools", |
| 35 | + "pytest==8.4.1", |
| 36 | + "black==25.1.0", |
| 37 | + "isort==6.0.1", |
| 38 | +] |
| 39 | + |
| 40 | +[project.entry-points."distutils.commands"] |
| 41 | +plugins = "plux.build.setuptools:plugins" |
| 42 | + |
| 43 | +[project.entry-points."egg_info.writers"] |
| 44 | +# this is actually not a writer, it's a reader :-) |
| 45 | +"plux.json" = "plux.build.setuptools:load_plux_entrypoints" |
| 46 | + |
| 47 | +[tool.hatch.version] |
| 48 | +path = "plux/__init__.py" |
2 | 49 |
|
3 | 50 | [tool.black] |
4 | 51 | line_length = 100 |
5 | 52 | include = '((plugin)/.*\.py$|(plux)/.*\.py$|tests/.*\.py$)' |
6 | | -#extend_exclude = '()' |
7 | 53 |
|
8 | 54 | [tool.isort] |
9 | 55 | profile = 'black' |
10 | | -#extend_skip = [] |
11 | 56 | line_length = 100 |
0 commit comments