-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (58 loc) · 2.15 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
import os
from setuptools import find_packages
from setuptools import setup
def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
return f.read()
name = "zc.recipe.testrunner"
setup(
name=name,
version='3.2.dev0',
author="Jim Fulton",
author_email="[email protected]",
description="ZC Buildout recipe for creating test runners",
long_description=(read('README.rst') + '\n' + read('CHANGES.rst') + '\n' +
'Detailed Documentation\n'
'**********************\n' + '\n' +
read('src', 'zc', 'recipe', 'testrunner', 'README.rst')),
license="ZPL 2.1",
keywords="development build testing",
url='https://github.com/zopefoundation/zc.recipe.testrunner',
packages=find_packages('src'),
include_package_data=True,
package_dir={'': 'src'},
namespace_packages=['zc', 'zc.recipe'],
python_requires='>=3.8',
extras_require={
'test': ['zope.testing'],
},
install_requires=[
'zc.buildout >= 1.2.0',
'zope.testrunner',
'setuptools',
'zc.recipe.egg >= 1.2.0',
],
tests_require=['zope.testing'],
test_suite=name + '.tests.test_suite',
entry_points={
'zc.buildout': ['default = %s:TestRunner' % name],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Buildout",
"Intended Audience :: Developers",
"License :: OSI Approved :: Zope Public License",
"Programming Language :: Python",
"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",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)