-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
84 lines (76 loc) · 2.25 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import os
from pathlib import Path
from setuptools import find_packages
from setuptools import setup
def read(*rnames):
return Path(os.path.join(os.path.dirname(__file__), *rnames)).read_text()
long_description = (
read('README.rst')
+ '\n' +
read('CHANGES.rst')
+ '\n' +
'Detailed Documentation\n'
'**********************\n'
+ '\n' +
read('src', 'zc', 'zodbrecipes', 'zeo.txt')
+ '\n' +
'Download\n'
'**********************\n'
)
tests_require = [
'zdaemon',
'ZEO',
'zope.event',
'zope.testing',
'zope.proxy',
'zope.testrunner',
'zodbpickle',
]
name = "zc.zodbrecipes"
setup(
name=name,
version='3.2.dev0',
author="Jim Fulton",
author_email="[email protected]",
description="ZC Buildout recipes for ZODB",
license="ZPL 2.1",
keywords="zodb buildout",
url='https://github.com/zopefoundation/zc.zodbrecipes',
long_description=long_description,
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
namespace_packages=['zc'],
python_requires='>=3.8',
install_requires=[
'zc.buildout',
'setuptools',
'zc.recipe.egg',
'ZConfig >=2.4'
],
extras_require=dict(test=tests_require),
entry_points={
'zc.buildout': [
'server = %s:StorageServer' % name,
]
},
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3',
'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 :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python',
'Framework :: Buildout',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
],
test_suite='zc.zodbrecipes.tests.test_suite',
)