|
1 | 1 | from pathlib import Path |
2 | | -from setuptools import find_packages |
3 | 2 | from setuptools import setup |
4 | 3 |
|
5 | 4 |
|
|
21 | 20 | "Development Status :: 5 - Production/Stable", |
22 | 21 | "Environment :: Web Environment", |
23 | 22 | "Framework :: Plone", |
24 | | - "Framework :: Plone :: 6.0", |
| 23 | + "Framework :: Plone :: 6.2", |
25 | 24 | "Framework :: Plone :: Core", |
26 | 25 | "Framework :: Zope :: 5", |
27 | 26 | "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", |
28 | 27 | "Operating System :: OS Independent", |
29 | 28 | "Programming Language :: Python", |
30 | | - "Programming Language :: Python :: 3.8", |
31 | | - "Programming Language :: Python :: 3.9", |
32 | 29 | "Programming Language :: Python :: 3.10", |
33 | 30 | "Programming Language :: Python :: 3.11", |
34 | 31 | ], |
35 | | - python_requires=">=3.8", |
| 32 | + python_requires=">=3.10", |
36 | 33 | keywords="plone browser layer", |
37 | 34 | author="Plone Foundation", |
38 | 35 | |
39 | 36 | url="https://github.com/plone/plone.browserlayer", |
40 | 37 | license="GPL version 2", |
41 | | - packages=find_packages(), |
42 | | - namespace_packages=["plone"], |
43 | 38 | include_package_data=True, |
44 | 39 | zip_safe=False, |
45 | 40 | extras_require=dict( |
|
51 | 46 | ] |
52 | 47 | ), |
53 | 48 | install_requires=[ |
54 | | - "setuptools", |
55 | 49 | "zope.component", |
56 | 50 | "zope.interface", |
57 | 51 | "zope.traversing >= 3.9.0", |
|
0 commit comments