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 8f41b46 commit 14043bdCopy full SHA for 14043bd
setup.py
@@ -1,10 +1,15 @@
1
from setuptools import setup, Extension
2
3
+with open('README.md') as f:
4
+ long_description = f.read()
5
6
setup(
7
name='httptools',
8
version='0.0.11',
9
description='A collection of framework independent HTTP protocol utils.',
10
+ long_description=long_description,
11
+ long_description_content_type='text/markdown',
12
+ url='https://github.com/MagicStack/httptools',
13
classifiers=[
14
'License :: OSI Approved :: MIT License',
15
'Intended Audience :: Developers',
0 commit comments