-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
52 lines (47 loc) · 1.96 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
#!/usr/bin/env python
# Copyright (c) 2019, Red Hat, Inc.
# License: MIT
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
TEST_REQUIRES = ['pytest-cov', 'flake8', 'pytest', 'pytest-datadir', 'tox']
setup(
name='tag_utils',
version='0.0.8',
install_requires=['pyyaml', 'koji', 'toolchest>=0.0.6', 'koji_wrapper'],
tests_require=TEST_REQUIRES,
extras_require={'test': TEST_REQUIRES,
'docs': ['sphinx',
'sphinx-autobuild',
'sphinx-rtd-theme']},
license='MIT',
description=("tag_utils is a collection of Pungi compose "
"and Koji tag functions for release-depot."),
long_description=readme + '\n\n' + history,
author='Red Hat',
author_email='[email protected]',
maintainer='Lon Hohberger',
maintainer_email='[email protected]',
packages=find_packages(),
url='http://github.com/release-depot/tag-utils',
data_files=[("", ["LICENSE"])],
test_suite='tests',
zip_safe=False,
entry_points={
'console_scripts': ['tag-cleaner = tag_utils.cli.tag_cleaner:main',
'tag-delta = tag_utils.cli.tag_delta:main',
'tag-over = tag_utils.cli.tag_over:main',
'trunk-update = tag_utils.cli.tag_over:trunk_update']
},
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'],
)