-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
32 lines (31 loc) · 1.28 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
"""Setup.py file."""
from setuptools import setup
setup(name='ustriage',
version='2.0',
description='Output Ubuntu Server Launchpad bugs for triage',
author='Joshua Powers',
author_email='[email protected]',
url='https://github.com/powersj/ubuntu-server-triage',
download_url=('https://github.com/powersj/ubuntu-server-triage/' +
'tarball/master'),
keywords=['ubuntu', 'launchpad', 'triage', 'bugs'],
license='GNU General Public License v3 or later',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later"
" (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
],
packages=['ustriage'],
entry_points={
'console_scripts': ['ustriage=ustriage.ustriage:launch']
},
install_requires=['pyyaml', 'python-dateutil'],
zip_safe=False)