Skip to content

Commit 51d0239

Browse files
committed
Set proper long description
1 parent fbeb067 commit 51d0239

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
pytest==5.4.1
22
pytest-cov==2.11.1
3-
setuptools==46.1.3
43
py-irclib>=0.1.3.1

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
from setuptools import setup
2+
from pathlib import Path
3+
4+
this_directory = Path(__file__).parent
5+
long_description = (this_directory / "README.md").read_text()
26

37
setup(
48
name='async-irc',
59
version='0.1.8',
610
python_requires=">=3.6",
711
description="A simple asyncio.Protocol implementation designed for IRC",
12+
long_description=long_description,
13+
long_description_content_type='text/markdown',
814
url='https://github.com/TotallyNotRobots/async-irc',
915
author='linuxdaemon',
1016
author_email='[email protected]',

0 commit comments

Comments
 (0)