forked from quiqua/pytest-dotenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.2 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
from setuptools import setup
description = 'A py.test plugin that parses environment files before running tests'
setup(
name='pytest-dotenv',
description=description,
long_description=description,
version='0.4.0',
author='Marcel Radischat',
author_email='[email protected]',
url='https://github.com/quiqua/pytest-dotenv',
download_url='https://github.com/quiqua/pytest-dotenv/tarball/0.2.0',
packages=['pytest_dotenv'],
entry_points={'pytest11': ['env = pytest_dotenv.plugin']},
install_requires=['pytest-django>=3.4.8', 'django-dotenv>=1.4.2'],
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',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
'Programming Language :: Python :: 3.7'
]
)