|
1 | | -from pathlib import Path |
2 | 1 | from setuptools import setup |
3 | 2 |
|
4 | | -version = "4.0.1.dev0" |
5 | | - |
6 | | -long_description = ( |
7 | | - f"{Path('README.rst').read_text()}\n{Path('CHANGES.rst').read_text()}" |
8 | | -) |
9 | | - |
10 | | -setup( |
11 | | - name="plone.contentrules", |
12 | | - version=version, |
13 | | - description="Plone ContentRules Engine", |
14 | | - long_description=long_description, |
15 | | - long_description_content_type="text/x-rst", |
16 | | - # Get more strings from |
17 | | - # https://pypi.org/classifiers/ |
18 | | - classifiers=[ |
19 | | - "Development Status :: 5 - Production/Stable", |
20 | | - "Environment :: Web Environment", |
21 | | - "Framework :: Plone", |
22 | | - "Framework :: Plone :: 6.2", |
23 | | - "Framework :: Plone :: Core", |
24 | | - "Framework :: Zope :: 5", |
25 | | - "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", |
26 | | - "Operating System :: OS Independent", |
27 | | - "Programming Language :: Python", |
28 | | - "Programming Language :: Python :: 3.10", |
29 | | - "Programming Language :: Python :: 3.11", |
30 | | - "Programming Language :: Python :: 3.12", |
31 | | - "Programming Language :: Python :: 3.13", |
32 | | - "Programming Language :: Python :: 3.14", |
33 | | - ], |
34 | | - keywords="Plone content rules events", |
35 | | - author="Plone Foundation", |
36 | | - author_email="plone-developers@lists.sourceforge.net", |
37 | | - url="https://pypi.org/project/plone.contentrules", |
38 | | - license="GPL version 2", |
39 | | - include_package_data=True, |
40 | | - zip_safe=False, |
41 | | - python_requires=">=3.10", |
42 | | - install_requires=[ |
43 | | - "zope.componentvocabulary", |
44 | | - "Zope", |
45 | | - ], |
46 | | -) |
| 3 | +# See pyproject.toml for package metadata |
| 4 | +setup() |
0 commit comments