-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (25 loc) · 976 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
"""Setup.py file."""
from setuptools import setup
setup(
name="dsctriage",
version="1.7.1",
description="Output Ubuntu Discourse comments for triage",
author="Lena Voytek",
author_email="[email protected]",
url="https://github.com/lvoytek/discourse-triage",
download_url=("https://github.com/lvoytek/discourse-triage" + "tarball/main"),
keywords=["ubuntu", "discourse", "triage"],
license="GNU General Public License v3 or later",
classifiers=[
"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",
],
packages=["dsctriage"],
entry_points={"console_scripts": ["dsctriage=dsctriage.dsctriage:launch"]},
install_requires=["alive-progress"],
zip_safe=False,
)