Skip to content

Commit d30425e

Browse files
committed
Add README to PyPi page
1 parent 887de0a commit d30425e

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

setup.py

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
1-
from distutils.core import setup
2-
setup(
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
37
name='jokeapi',
48
packages=['jokeapi'],
5-
version='0.1.2',
9+
version='0.1.3',
610
license='GNU General Public License v3 (GPLv3)',
711
description='An API Wrapper for Sv443\'s JokeAPI',
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
814
author='thenamesweretakenalready',
915
author_email='[email protected]',
1016
url="""https://github.com/thenamesweretakenalready/Sv443s-JokeAPI-Python-Wrapper""",
11-
download_url='https://github.com/user/Sv443s-JokeAPI-Python-Wrapper/archive/v0.1.2.tar.gz',
17+
download_url='https://github.com/user/Sv443s-JokeAPI-Python-Wrapper/archive/v0.1.3.tar.gz',
1218
keywords=['api wrapper', 'wrapper', 'api', 'jokes'],
13-
install_requires=[],
19+
install_requires=setuptools.find_packages(),
1420
classifiers=[
1521
'Development Status :: 3 - Alpha',
1622
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)