Skip to content

Commit 139da9f

Browse files
committed
Update package information
1 parent f06c11a commit 139da9f

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def read(*args: str) -> str:
2020
"Repository": "https://github.com/hackebrot/labels",
2121
"Issues": "https://github.com/hackebrot/labels/issues",
2222
},
23-
description="Python 3 (3.6 and newer) CLI app to manage GitHub issue labels",
23+
description="Python 3 (3.6 and newer) CLI app to manage GitHub issue labels. 📝",
2424
long_description=read("README.md"),
2525
long_description_content_type="text/markdown",
2626
packages=setuptools.find_packages("src"),

src/labels/__init__.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
# -*- coding: utf-8 -*-
1+
__version__ = "0.2.0.dev0"
2+
__title__ = "labels"
3+
__description__ = "Python 3 (3.6 and newer) CLI app to manage GitHub issue labels. 📝"
4+
__url__ = "https://github.com/hackebrot/labels"
25

3-
__author__: str = "Raphael Pierzina"
4-
__email__: str = "[email protected]"
5-
__version__: str = "0.2.0.dev0"
6+
__author__ = "Raphael Pierzina"
7+
__email__ = "[email protected]"
8+
9+
__license__ = "MIT License"
10+
__copyright__ = "Copyright (c) 2018 Raphael Pierzina"

0 commit comments

Comments
 (0)