-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
60 lines (55 loc) · 1.45 KB
/
setup.cfg
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
[metadata]
name = souper
description = Souper - Generic Indexed Storage based on ZODB
long_description = file: README.rst, CHANGES.rst, COPYRIGHT.rst
keywords = zodb zope pyramid node plone
author = BlueDynamics Alliance
author_email = [email protected]
url = https://pypi.org/project/souper
license = BSD
license_file = LICENSE.rst
classifiers =
Framework :: ZODB
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
install_requires =
setuptools
six
node.ext.zodb
repoze.catalog>=0.9.0
namespace_packages =
souper
# thanks to this bug, the following line w/o override in setup.py does not work.
# https://github.com/pypa/setuptools/issues/1136
package_dir =
= src
packages = find:
zip_safe = False
[options.packages.find]
where =
src
[check-manifest]
ignore =
*.cfg
.coveragerc
.editorconfig
.gitattributes
[isort]
# for details see
# http://docs.plone.org/develop/styleguide/python.html#grouping-and-sorting
force_alphabetical_sort = True
force_single_line = True
lines_after_imports = 2
line_length = 200
not_skip = __init__.py
[zest.releaser]
create-wheel = yes