From 725dda104843d53cdb5889f5ce2af379c2bad82a Mon Sep 17 00:00:00 2001 From: Lukas Eller Date: Fri, 19 Feb 2021 17:07:36 +0100 Subject: [PATCH] test setup . py --- setup.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b02792c --- /dev/null +++ b/setup.py @@ -0,0 +1,34 @@ +import pathlib +from setuptools import setup + +# The directory containing this file +HERE = pathlib.Path(__file__).parent + +# The text of the README file +README = (HERE / "README.md").read_text() + +# This call to setup() does all the work +setup( + name="realpython-reader", + version="1.0.0", + description="Read the latest Real Python tutorials", + long_description=README, + long_description_content_type="text/markdown", + url="https://github.com/realpython/reader", + author="Real Python", + author_email="office@realpython.com", + license="MIT", + classifiers=[ + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + ], + packages=["reader"], + include_package_data=True, + #install_requires=["feedparser", "html2text"], + entry_points={ + "console_scripts": [ + "realpython=reader.__main__:main", + ] + }, +) -- 2.22.0