-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 961 Bytes
/
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
"""Setuptools packaging script"""
from setuptools import setup
__version__ = '0.0.9'
setup(
name="testforeman",
version=__version__,
description="Orchestrate parallel test runs",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
keywords="test",
author="Yan Kevych",
license="BSD 2-clause",
packages=["testforeman"],
python_requires=">=3.1",
url="https://github.com/ykvch/testforeman",
extras_require={"pytest": ["pytest"], "nose": ["nose"]},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
],
entry_points={
"pytest11": ["foreman = testforeman.pytest_plugin"],
"console_scripts": ["testforeman = testforeman.server:main"],
}
)