|
1 | 1 | from pathlib import Path |
2 | | -from setuptools import find_packages |
3 | 2 | from setuptools import setup |
4 | 3 |
|
5 | 4 |
|
|
18 | 17 | author="Plone Foundation", |
19 | 18 | |
20 | 19 | license="GPL version 2", |
21 | | - packages=find_packages("src"), |
22 | | - package_dir={"": "src"}, |
23 | | - namespace_packages=["plone"], |
24 | 20 | include_package_data=True, |
25 | 21 | zip_safe=False, |
26 | 22 | url="https://github.com/plone/plone.api", |
27 | 23 | keywords="plone api", |
28 | | - python_requires=">=3.8", |
| 24 | + python_requires=">=3.10", |
29 | 25 | install_requires=[ |
30 | 26 | "Acquisition", |
31 | 27 | "Products.statusmessages", |
|
41 | 37 | "plone.i18n", |
42 | 38 | "plone.registry", |
43 | 39 | "plone.uuid", |
44 | | - "setuptools", |
45 | 40 | "zope.globalrequest", |
46 | 41 | "Products.CMFCore", |
47 | 42 | "z3c.relationfield", |
|
68 | 63 | "Development Status :: 5 - Production/Stable", |
69 | 64 | "Environment :: Web Environment", |
70 | 65 | "Framework :: Plone", |
71 | | - "Framework :: Plone :: 6.0", |
| 66 | + "Framework :: Plone :: 6.2", |
72 | 67 | "Framework :: Plone :: Core", |
73 | 68 | "Intended Audience :: Developers", |
74 | 69 | "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", |
75 | 70 | "Operating System :: OS Independent", |
76 | 71 | "Programming Language :: Python", |
77 | | - "Programming Language :: Python :: 3.8", |
78 | | - "Programming Language :: Python :: 3.9", |
79 | 72 | "Programming Language :: Python :: 3.10", |
80 | 73 | "Programming Language :: Python :: 3.11", |
81 | 74 | ], |
|
0 commit comments