Skip to content

Commit 31ed685

Browse files
committed
Add Python 3.7 to setup
1 parent bffcb0d commit 31ed685

File tree

1 file changed

+30
-36
lines changed

1 file changed

+30
-36
lines changed

setup.py

Lines changed: 30 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -8,46 +8,40 @@
88

99
def read(fname):
1010
file_path = os.path.join(os.path.dirname(__file__), fname)
11-
return codecs.open(file_path, encoding='utf-8').read()
11+
return codecs.open(file_path, encoding="utf-8").read()
1212

1313

1414
setup(
15-
name='pytest-cookies',
16-
version='0.3.0',
17-
author='Raphael Pierzina',
18-
author_email='[email protected]',
19-
maintainer='Raphael Pierzina',
20-
maintainer_email='[email protected]',
21-
license='MIT',
22-
url='https://github.com/hackebrot/pytest-cookies',
23-
description='A Pytest plugin for your Cookiecutter templates',
24-
long_description=read('README.rst'),
25-
py_modules=['pytest_cookies'],
15+
name="pytest-cookies",
16+
version="0.3.0",
17+
author="Raphael Pierzina",
18+
author_email="[email protected]",
19+
maintainer="Raphael Pierzina",
20+
maintainer_email="[email protected]",
21+
license="MIT",
22+
url="https://github.com/hackebrot/pytest-cookies",
23+
description="A Pytest plugin for your Cookiecutter templates",
24+
long_description=read("README.rst"),
25+
py_modules=["pytest_cookies"],
2626
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
27-
install_requires=[
28-
'pytest>=3.3.0',
29-
'cookiecutter>=1.4.0'
30-
],
27+
install_requires=["pytest>=3.3.0", "cookiecutter>=1.4.0"],
3128
classifiers=[
32-
'Development Status :: 4 - Beta',
33-
'Intended Audience :: Developers',
34-
'License :: OSI Approved :: MIT License',
35-
'Operating System :: OS Independent',
36-
'Programming Language :: Python :: 2',
37-
'Programming Language :: Python :: 2.7',
38-
'Programming Language :: Python :: 3',
39-
'Programming Language :: Python :: 3.4',
40-
'Programming Language :: Python :: 3.5',
41-
'Programming Language :: Python :: 3.6',
42-
'Programming Language :: Python :: Implementation :: CPython',
43-
'Programming Language :: Python',
44-
'Topic :: Software Development :: Testing',
45-
'Framework :: Pytest',
29+
"Development Status :: 4 - Beta",
30+
"Intended Audience :: Developers",
31+
"License :: OSI Approved :: MIT License",
32+
"Operating System :: OS Independent",
33+
"Programming Language :: Python :: 2",
34+
"Programming Language :: Python :: 2.7",
35+
"Programming Language :: Python :: 3",
36+
"Programming Language :: Python :: 3.4",
37+
"Programming Language :: Python :: 3.5",
38+
"Programming Language :: Python :: 3.6",
39+
"Programming Language :: Python :: 3.7",
40+
"Programming Language :: Python :: Implementation :: CPython",
41+
"Programming Language :: Python",
42+
"Topic :: Software Development :: Testing",
43+
"Framework :: Pytest",
4644
],
47-
entry_points={
48-
'pytest11': [
49-
'cookies = pytest_cookies',
50-
],
51-
},
52-
keywords=['cookiecutter', 'pytest'],
45+
entry_points={"pytest11": ["cookies = pytest_cookies"]},
46+
keywords=["cookiecutter", "pytest"],
5347
)

0 commit comments

Comments
 (0)