diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..b02792c03013e1f7bb062b8901870381dffe579e --- /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", + ] + }, +)