-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·62 lines (56 loc) · 1.72 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
#!/usr/bin/env python
import os
import pytest_config
from setuptools import setup
def read(fname):
with open(fname) as fp:
content = fp.read()
return content
HOME = os.environ['HOME']
setup(
name='pytest-config',
version=pytest_config.__version__,
description="""
Base configurations and utilities for developing
your Python project test suite with pytest.
""",
long_description=read('README.rst'),
author='Gerardo Orozco Mosqueda',
author_email='[email protected]',
url='https://github.com/buzzfeed/pytest_config',
packages=['pytest_config'],
entry_points={'pytest11': ['config = pytest_config.plugin']},
data_files=[
(os.path.join(HOME, '.pytest_config/templates'),
['data/coveragerc', 'data/pytest.ini']),
],
scripts=[
'scripts/pytest_config.init',
'scripts/pytest_config.update'
],
package_data={'pytest_config': ['_templates/*.*']},
include_package_data=True,
install_requires=[
'pytest>=2.3',
'pytest-django>=2.6.1',
'pytest-cov>=1.6',
'pytest-cache>=1.0',
'pep8>=1.5.6',
'pytest-pep8>=1.0.6',
'pytest-random>=0.2',
'pytest-pythonpath==0.3'
],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
)