-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
35 lines (31 loc) · 1.05 KB
/
setup.py
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
from setuptools import setup
version = '3.0.dev0'
with open('README.rst') as f:
README = f.read()
setup(
name='zopetoolkit',
version=version,
description='Set of libraries maintained by the Zope project.',
author='Zope team',
author_email='[email protected]',
license='ZPL',
long_description_content_type='text/x-rst',
long_description=README,
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Zope Public License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
],
zip_safe=False,
python_requires='>=3.8',
install_requires=[],
entry_points={},
packages=[],
)