|
1 | | -from pathlib import Path |
2 | 1 | from setuptools import setup |
3 | 2 |
|
4 | | -version = "3.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.alterego", |
12 | | - version=version, |
13 | | - description="Low level support for dynamic modules", |
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 | | - "Framework :: Plone", |
21 | | - "Framework :: Plone :: 6.2", |
22 | | - "Framework :: Plone :: Core", |
23 | | - "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", |
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 | | - keywords="Plone schema interface", |
33 | | - author="Laurence Rowe", |
34 | | - author_email="plone-developers@lists.sourceforge.net", |
35 | | - url="https://github.com/plone/plone.alterego", |
36 | | - license="LGPL", |
37 | | - include_package_data=True, |
38 | | - zip_safe=False, |
39 | | - python_requires=">=3.10", |
40 | | - install_requires=[ |
41 | | - "zope.component", |
42 | | - "zope.interface", |
43 | | - ], |
44 | | - extras_require={"test": []}, |
45 | | - entry_points=""" |
46 | | - # -*- Entry points: -*- |
47 | | - """, |
48 | | -) |
| 3 | +# See pyproject.toml for package metadata |
| 4 | +setup() |
0 commit comments