-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
76 lines (68 loc) · 2.22 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
"""Integration of zope.testrunner-style test layers into pytest framework"""
from setuptools import find_packages
from setuptools import setup
setup(
name='zope.pytestlayer',
version='8.3.dev0',
python_requires='>=3.9',
install_requires=[
'pytest >= 6, < 8',
'setuptools',
'zope.dottedname',
],
extras_require={
'test': [
'plone.testing',
],
'docs': [
'Sphinx',
'gocept.package',
]
},
entry_points={
'pytest11': [
'zopelayer = zope.pytestlayer.plugin',
],
},
author='gocept',
author_email='zope-dev@zope.dev',
license='ZPL 2.1',
url='https://github.com/zopefoundation/zope.pytestlayer/',
keywords='pytest zope.testrunner layer fixture',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Pytest",
"Framework :: Plone",
"Framework :: Zope :: 3",
"Framework :: Zope :: 5",
"Intended Audience :: Developers",
"License :: OSI Approved :: Zope Public License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
],
description=__doc__.strip(),
long_description='\n\n'.join(open(name).read() for name in (
'README.rst',
'HACKING.rst',
'CHANGES.rst',
)),
namespace_packages=['zope'],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
)