-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
56 lines (54 loc) · 1.77 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
from setuptools import find_packages
from setuptools import setup
import os.path
setup(
name='gocept.collmex',
version='2.1.1.dev0',
author='gocept',
author_email='[email protected]',
description='Python-bindings for the Collmex import/export API',
url='https://github.com/gocept/gocept.collmex',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved',
'License :: OSI Approved :: Zope Public License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'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',
'Programming Language :: Python :: Implementation :: PyPy',
],
long_description=(
open('README.rst').read() +
'\n\n' +
open(os.path.join('src', 'gocept', 'collmex', 'doctest.rst')).read() +
'\n\n' +
open('CHANGES.rst').read()),
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
license='ZPL 2.1',
namespace_packages=['gocept'],
python_requires='>=3.7',
install_requires=[
'gocept.cache >= 0.6.1',
'setuptools >= 1.0',
'transaction >= 1.4',
'zope.deprecation >= 4.0',
'zope.interface >= 4.0',
'webtest >= 2.0',
'wsgiproxy2',
],
extras_require=dict(
test=[
'zope.testing >= 4.0',
'mock >= 1.0',
]),
)