forked from fizyk/pytest_pyramid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (61 loc) · 1.87 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
60
61
62
63
64
65
66
67
68
69
70
"""pytest_pyramid's installation file."""
import os
from setuptools import setup, find_packages
here = os.path.dirname(__file__)
def read(fname):
"""Read file into string."""
return open(os.path.join(here, fname)).read()
requirements = [
'pytest',
'pyramid',
'webtest'
]
tests_require = [
'pytest-cov'
]
extras_require = {
'docs': ['sphinx'],
'tests': tests_require
}
setup(
name='pytest_pyramid',
version='0.3.2',
description='pytest pyramid providing basic fixtures for testing ' +
'pyramid applications with pytest test suite',
long_description=(
read('README.rst') + '\n\n' + read('CHANGES.rst')
),
keywords='pyramid pytest testing',
author='Grzegorz Sliwinski',
author_email='fizyk@fizyk.net.pl',
url='https://github.com/fizyk/pytest_pyramid',
license="MIT License",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
],
packages=find_packages(),
install_requires=requirements,
tests_require=tests_require,
test_suite='tests',
entry_points={
'pytest11': [
'pytest_pyramid = pytest_pyramid.plugin'
]},
include_package_data=True,
zip_safe=False,
extras_require=extras_require,
)