-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.27 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
#!/usr/bin/env python
"""
Setup script
"""
from setuptools import setup
setup(
name='rfpkgdb-cli',
description='A command line tool to access the Rpmfusion Package Database.',
version='2.15.0rc2',
license='GPLv2+',
download_url='https://github.com/ferdnyc/rfpkgdb-cli/releases/tag/v2.15.0rc2',
url='https://github.com/ferdnyc/rfpkgdb-cli',
author='Pierre-Yves Chibon',
author_email='[email protected]',
maintainer='FeRD (Frank Dana)',
maintainer_email='[email protected]',
packages=['rfpkgdb2client'],
entry_points={
'console_scripts': [
"rfpkgdb-cli=rfpkgdb2client.cli:main",
"rfpkgdb-admin=rfpkgdb2client.admin:main",
]
},
install_requires=[
'requests', 'python-bugzilla', 'python-fedora', 'setuptools', 'six',
'beautifulsoup4'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 or later '
'(GPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
],
)