|
4 | 4 | [build-system] |
5 | 5 | requires = ["setuptools>=68.2,<83", "wheel"] |
6 | 6 |
|
| 7 | +# START-MARKER-MANUAL-CONFIG |
| 8 | +# Anything from here until END-MARKER-MANUAL-CONFIG |
| 9 | +# will be kept by plone.meta |
| 10 | + |
| 11 | +[project] |
| 12 | +name = "borg.localrole" |
| 13 | +version = "5.0.1.dev0" |
| 14 | +description = "A PAS plugin which can manage local roles via an adapter lookup on the current context" |
| 15 | +classifiers = [ |
| 16 | + "Development Status :: 5 - Production/Stable", |
| 17 | + "Environment :: Web Environment", |
| 18 | + "Framework :: Plone", |
| 19 | + "Framework :: Plone :: 6.2", |
| 20 | + "Framework :: Plone :: Core", |
| 21 | + "Intended Audience :: Other Audience", |
| 22 | + "Intended Audience :: System Administrators", |
| 23 | + "Operating System :: OS Independent", |
| 24 | + "Programming Language :: Python", |
| 25 | + "Programming Language :: Python :: 3.10", |
| 26 | + "Programming Language :: Python :: 3.11", |
| 27 | + "Programming Language :: Python :: 3.12", |
| 28 | + "Programming Language :: Python :: 3.13", |
| 29 | + "Programming Language :: Python :: 3.14", |
| 30 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 31 | +] |
| 32 | +license = "LGPL-2.1-only" |
| 33 | +dynamic = ["readme"] |
| 34 | +requires-python = ">=3.10" |
| 35 | +authors = [ |
| 36 | + {name = "Borg Collective",email = "borg@plone.org"}, |
| 37 | +] |
| 38 | +maintainers = [ |
| 39 | + {name = "Plone Foundation and contributors",email = "plone-developers@lists.sourceforge.net"}, |
| 40 | +] |
| 41 | +dependencies = [ |
| 42 | + "AccessControl", |
| 43 | + "Acquisition", |
| 44 | + "Products.CMFCore", |
| 45 | + "Products.GenericSetup", |
| 46 | + "Products.PlonePAS >= 5.0.1", |
| 47 | + "Products.PluggableAuthService", |
| 48 | + "Zope", |
| 49 | + "plone.memoize", |
| 50 | + "zope.annotation", |
| 51 | + "zope.component", |
| 52 | + "zope.deferredimport", |
| 53 | + "zope.interface", |
| 54 | +] |
| 55 | +keywords = ["Plone", "PAS", "local", "roles"] |
| 56 | + |
| 57 | +[project.optional-dependencies] |
| 58 | +test = [ |
| 59 | + "plone.app.testing", |
| 60 | + "plone.testing", |
| 61 | +] |
| 62 | + |
| 63 | +[project.urls] |
| 64 | +Source = "https://github.com/plone/borg.localrole" |
| 65 | +Issues = "https://github.com/plone/Products.CMFPlone/issues" |
| 66 | +Changelog = "https://github.com/plone/borg.localrole/blob/main/CHANGES.rst" |
7 | 67 |
|
| 68 | +[tool.setuptools.dynamic] |
| 69 | +readme = {file = ["README.rst", "CHANGES.rst"]} |
| 70 | +# END-MARKER-MANUAL-CONFIG |
8 | 71 |
|
9 | 72 | [tool.towncrier] |
10 | 73 | directory = "news/" |
|
0 commit comments