Skip to content

Commit

Permalink
Merge pull request #15 from clvrk/dev
Browse files Browse the repository at this point in the history
Docs pt. 2
  • Loading branch information
firstaidguyheru authored Apr 12, 2021
2 parents e504186 + 2382474 commit 21a5215
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Contribute: [contributing.md](https://github.com/clvrk/cocktail-wrapper/blob/master/contributing.md)
Docs: [Docs.md](https://github.com/clvrk/cocktail-wrapper/blob/master/Docs.md)

Alcohol endpoints such as: [link](www.thecocktaildb.com/api/json/v1/1/list.php?a=list) are not supported, completely useless.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
with open("requirements.txt", "r") as f:
requirements = f.readlines()

with open("Docs.md", "r") as df:
docs = df.readlines()

setuptools.setup (
name='cocktail-wrapper',
Expand All @@ -15,7 +17,7 @@
include_package_data=True,
install_requires=requirements,
description="An unofficial asynchronous API wrapper for thecocktaildb.com.",
long_description=None,
long_description=docs,
long_description_content_type="text/markdown",
keywords="api wrapper food cocktails asynchronous library free",
classifiers = (
Expand Down

0 comments on commit 21a5215

Please sign in to comment.