-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (45 loc) · 1.58 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
import pathlib
from setuptools import find_packages, setup
def read(*args):
file_path = pathlib.Path(__file__).parent.joinpath(*args)
with file_path.open(encoding="utf-8") as f:
return f.read()
setup(
name="pytest-joke",
version='0.1.1',
license='MIT',
description='Test failures are better served with humor.',
long_description=read("README.md"),
long_description_content_type='text/markdown',
author='Alexander Afanasyev',
author_email='[email protected]',
maintainer='Alexander Afanasyev',
maintainer_email='[email protected]',
url='https://github.com/alecxe/pytest-joke',
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
python_requires=">=3.4",
install_requires=[
"pytest>=4.2.1",
"pyjokes>=0.6.0"
],
entry_points={"pytest11": ["joke = pytest_joke.plugin"]},
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
keywords=["pytest", "joke", "humor", "humour"]
)