forked from MobileDynasty/pytest-env
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 927 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 927 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
from setuptools import setup
description = 'py.test plugin that allows you to add environment variables.'
setup(
name='pytest-env',
description=description,
long_description=description,
version='0.6.0',
author='dev@mobile-dynasty.com',
author_email='dev@mobile-dynasty.com',
url='https://github.com/MobileDynasty/pytest-env',
packages=['pytest_env'],
entry_points={'pytest11': ['env = pytest_env.plugin']},
install_requires=['pytest>=2.6.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT 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',
]
)