-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (51 loc) · 1.72 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
from setuptools import find_packages
from setuptools import setup
import os.path
tests_require = []
setup(
name='gocept.cache',
version='6.0.dev0',
author="gocept",
author_email="[email protected]",
description="Cache descriptors for Python and Zope",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
],
keywords='cache transaction bound zope',
long_description=(
".. contents::\n\n" +
open(os.path.join('src', 'gocept', 'cache', 'README.rst')).read() +
'\n\n' +
open('CHANGES.rst').read()),
license="MIT",
url='https://github.com/gocept/gocept.cache',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
namespace_packages=['gocept'],
python_requires='>=3.8',
install_requires=[
'decorator',
'setuptools',
'transaction',
'zope.testing',
],
extras_require=dict(
test=tests_require),
)