-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
45 lines (42 loc) · 1.08 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
import setuptools
with open('README.rst') as f:
readme = f.read().strip()
setuptools.setup(
name='rpmlb',
license='GPLv2+',
use_scm_version=True,
description='RPM List Builder',
long_description=readme,
author='Jun Aruga',
author_email='[email protected]',
url='https://github.com/sclorg/rpm-list-builder',
packages=[
'rpmlb',
'rpmlb.builder',
'rpmlb.downloader',
],
install_requires=[
'PyYAML',
'retry',
'click',
'typing;python_version<"3.5"',
],
entry_points={
'console_scripts': [
'rpmlb=rpmlb.cli:run',
]
},
setup_requires=[
'pytest-runner',
'setuptools_scm',
],
classifiers=[
'License :: OSI Approved :: '
'GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
],
)