We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbeb067 commit 51d0239Copy full SHA for 51d0239
requirements.txt
@@ -1,4 +1,3 @@
1
pytest==5.4.1
2
pytest-cov==2.11.1
3
-setuptools==46.1.3
4
py-irclib>=0.1.3.1
setup.py
@@ -1,10 +1,16 @@
from setuptools import setup
+from pathlib import Path
+
+this_directory = Path(__file__).parent
5
+long_description = (this_directory / "README.md").read_text()
6
7
setup(
8
name='async-irc',
9
version='0.1.8',
10
python_requires=">=3.6",
11
description="A simple asyncio.Protocol implementation designed for IRC",
12
+ long_description=long_description,
13
+ long_description_content_type='text/markdown',
14
url='https://github.com/TotallyNotRobots/async-irc',
15
author='linuxdaemon',
16
author_email='[email protected]',
0 commit comments