-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (63 loc) · 1.91 KB
/
setup.py
File metadata and controls
67 lines (63 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from pathlib import Path
from setuptools import setup
version = "8.0.0a2.dev0"
description = "File types and fields for images, files and blob files with filenames"
long_description = (
f"{Path('README.rst').read_text()}\n"
f"{Path('CHANGES.rst').read_text()}\n"
f"{(Path('src') / 'plone' / 'namedfile' / 'usage.rst').read_text()}"
)
setup(
name="plone.namedfile",
version=version,
description=description,
long_description=long_description,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Plone",
"Framework :: Plone :: 6.2",
"Framework :: Plone :: Core",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
],
keywords="plone named file image blob",
author="Laurence Rowe, Martin Aspeli",
author_email="plone-developers@lists.sourceforge.net",
url="https://pypi.org/project/plone.namedfile",
license="BSD",
include_package_data=True,
zip_safe=False,
python_requires=">=3.10",
install_requires=[
"BeautifulSoup4",
"persistent",
"piexif",
"Pillow",
"plone.app.uuid>=2.2.0",
"plone.base",
"plone.dexterity",
"plone.memoize",
"plone.protect",
"plone.rfc822>=2.0.0",
"plone.scale[storage]>=4.2.0",
"plone.schemaeditor",
"plone.supermodel",
"Products.CMFCore",
"z3c.caching",
"zope.cachedescriptors",
"zope.copy",
"Zope",
],
extras_require={
"test": [
"lxml",
"plone.app.testing",
"plone.testing",
],
},
)