forked from hackebrot/pytest-cookies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (52 loc) · 1.92 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
import setuptools
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding="utf-8").read()
setuptools.setup(
name="pytest-cookies",
version="0.7.0",
author="Raphael Pierzina",
author_email="[email protected]",
maintainer="Raphael Pierzina",
maintainer_email="[email protected]",
license="MIT",
url="https://github.com/hackebrot/pytest-cookies",
project_urls={
"Repository": "https://github.com/hackebrot/pytest-cookies",
"Issues": "https://github.com/hackebrot/pytest-cookies/issues",
},
description="The pytest plugin for your Cookiecutter templates. 🍪",
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
python_requires=">=3.7",
install_requires=[
"cookiecutter>=2.1.0", # uses pyyaml
"pytest>=3.9.0", # adds tmp_path fixtures
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
"Framework :: Pytest",
],
entry_points={"pytest11": ["cookies = pytest_cookies.plugin"]},
keywords=["cookiecutter", "pytest"],
)