-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
56 lines (51 loc) · 1.45 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[metadata]
name = plux
version = attr: plugin.__version__
url = https://github.com/localstack/plux
author = Thomas Rausch
author_email = thomas@localstack.cloud
description = A dynamic code loading framework for building pluggable Python distributions
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
license = Apache License 2.0
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries
Topic :: Utilities
[options]
python_requires = >=3.8
zip_safe = False
packages = find:
setup_requires =
setuptools
wheel
install_requires =
importlib-metadata>=0.12;python_version<"3.8"
test_requires =
setuptools
pytest==6.2.4
[options.extras_require]
dev =
setuptools
pytest==6.2.4
black==22.3.0
isort==5.9.1
[options.packages.find]
exclude =
tests*
[options.package_data]
* = *.md
[options.entry_points]
distutils.commands =
plugins = plux.build.setuptools:plugins
egg_info.writers =
# this is actually not a writer, it's a reader :-)
plux.json = plux.build.setuptools:load_plux_entrypoints