-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 901 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 901 Bytes
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
from setuptools import setup
setup(
name = 'pytest-gitignore',
version = '1.3',
description = 'py.test plugin to ignore the same files as git',
url = 'https://github.com/tgs/pytest-gitignore',
long_description = open('README.txt').read(),
author = 'Thomas Grenfell Smith',
author_email = '[email protected]',
py_modules = ['pytest_gitignore'],
entry_points = {
'pytest11': [
'gitignore = pytest_gitignore',
],
},
classifiers = [
'License :: Public Domain',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Version Control',
],
install_requires = [
'pytest>=2.7',
],
)