-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 956 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
33
34
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
setup(
name='multibuild',
version='0.6.2',
description='speed up operations during release process',
author='Ondřej Nosek',
author_email='[email protected]',
url='https://github.com/onosek/multibuild',
license='GPLv3+',
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3 :: Only",
],
install_requires=[
# "python3-koji",
# "git",
# "rhpkg",
# "fedpkg",
# "brewkoji",
# "jq",
],
python_requires='>=3',
test_suite='nose.collector',
packages=find_packages(),
entry_points={
'console_scripts': [
'multibuild = multibuild.__main__:main',
]
},
include_package_data=True,
data_files=[('multibuild', ['conf/multibuild.conf'])],)