forked from mmerickel/pyramid_services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (52 loc) · 1.88 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
from setuptools import setup, find_packages
def readfile(name):
with open(name) as f:
return f.read()
readme = readfile('README.rst')
changes = readfile('CHANGES.rst')
requires = [
'pyramid',
'wired >= 0.2', # container.register_singleton
'zope.interface',
]
tests_require = requires + ['pytest', 'pytest-cov', 'webtest']
setup(
name='pyramid_services',
version='2.2',
description='A service layer abstraction for the Pyramid Web Framework.',
long_description=readme + '\n\n' + changes,
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
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.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
keywords=','.join(
['pyramid', 'services', 'service layer', 'ioc container']
),
author='Michael Merickel',
author_email='[email protected]',
url='https://github.com/mmerickel/pyramid_services',
license='MIT',
packages=find_packages('src', exclude=['tests']),
package_dir={'': 'src'},
include_package_data=True,
python_requires='>=3.3',
zip_safe=False,
install_requires=requires,
extras_require={'testing': tests_require},
tests_require=tests_require,
test_suite='pyramid_services',
entry_points={},
)