-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
37 lines (31 loc) · 1014 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='pytest-data',
version='0.4',
packages=['pytest_data'],
url='https://github.com/horejsek/python-pytest-data',
author='Michal Horejsek',
author_email='[email protected]',
description='Useful functions for managing data for pytest fixtures',
license='PSF',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
# the following makes a plugin available to pytest
entry_points = {
'pytest11': [
'data = pytest_data.plugin',
]
},
)