-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (23 loc) · 814 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (23 loc) · 814 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
from setuptools import find_packages
setup(
name="oqa2yml",
description="openQA Test shedule to YAML converter",
long_description="oqa2yml",
url="http://www.suse.com",
install_requires=["requests", "ruamel.yaml"],
include_package_data=True,
author="Ondřej Súkup",
author_email="[email protected]",
license="License :: GPL-3-or-newer",
platforms=["Linux"],
keywords=["SUSE", "openQA", "update", "testing"],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
entry_points={"console_scripts": ["oqa2yml = oqa2yml.main:main"]},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
],
)