Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
olzeug committed Jun 26, 2021
1 parent e51bf06 commit 6280b3b
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
from setuptools import setup
__project__ = "get_chefkoch"
__version__ = "1.0.1"
__version__ = "1.0.2"
__description__ = "Python library to interact with Chefkoch."

with open("README.md", "r") as fh:
long_description = fh.read()

__packages__ = ["get_chefkoch"]
__keywords__ = ["Chefkoch","get_chefkoch"]
__requires__ = ["requests","feedparser","beautifulsoup4"]

setup(
name = __project__,
version = __version__,
author = "olzeug",
description = __description__,
packages = __packages__,
keywords = __keywords__,
requires = __requires__,
license = 'MIT',
packages = ["get_chefkoch"],
keywords = ["Chefkoch","get_chefkoch"],
install_requires = ["requests","feedparser","beautifulsoup4"],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/olzeug/get_chefkoch",
Expand Down

0 comments on commit 6280b3b

Please sign in to comment.