-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
51 lines (48 loc) · 1.29 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
[metadata]
name = pyramid_services
version = 2.2
author = Michael Merickel
author_email = [email protected]
description = A service layer abstraction for the Pyramid Web Framework.
long_description = file: README.rst, CHANGES.rst
long_description_content_type = text/x-rst
license_files = LICENSE.txt
keywords =
pyramid
services
service layer
ioc
container
url = https://github.com/mmerickel/pyramid_services
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Pyramid
Intended Audience :: Developers
License :: OSI Approved :: MIT 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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
package_dir =
= src
packages = find:
zip_safe = False
install_requires =
pyramid
wired >= 0.2
zope.interface
include_package_data = True
python_requires = >=3.8
[options.packages.find]
where = src
[options.extras_require]
testing =
pytest
pytest-cov
webtest