-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.35 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
from setuptools import setup
import versioneer
DESCRIPTION_FILES = ["pypi-intro.rst"]
long_description = []
import codecs
for filename in DESCRIPTION_FILES:
with codecs.open(filename, 'r', 'utf-8') as f:
long_description.append(f.read())
long_description = "\n".join(long_description)
setup(
name="pytest-info-collector",
version=versioneer.get_version(),
packages = ['pytest_info_collector'],
python_requires = '>=3.6',
install_requires = ["pytest"],
author = "James Tocknell",
author_email = "[email protected]",
description = "pytest plugin to collect information from tests",
long_description = long_description,
license = "3-clause BSD",
keywords = "pytest testing",
url = "https://pytest-info-collector.readthedocs.io",
entry_points = {
'pytest11': [
'name_of_plugin = pytest_info_collector',
]
},
classifiers=[
'Framework :: Pytest',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
cmdclass=versioneer.get_cmdclass(),
)