File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 1+ """Setup script for realpython-reader"""
2+
13import pathlib
2- from setuptools import find_packages , setup
4+ from setuptools import setup
35
46# The directory containing this file
57HERE = pathlib .Path (__file__ ).parent
68
9+ # The text of the README file
10+ README = (HERE / "README.md" ).read_text ()
11+
712
13+ # This call to setup() does all the work
814setup (
915 name = "realpython-reader" ,
1016 version = "0.0.1" ,
1117 description = "Read Real Python Tutorials" ,
12- long_description = ( HERE / " README.md" ). read_text () ,
18+ long_description = README ,
1319 long_description_content_type = "text/markdown" ,
1420 url = "https://github.com/realpython/reader" ,
1521 author = "Real Python" ,
2026 "Programming Language :: Python" ,
2127 "Programming Language :: Python :: 3" ,
2228 ],
23- packages = find_packages ( exclude = ( "tests" ,)) ,
29+ packages = [ "reader" ] ,
2430 install_requires = ["feedparser" , "html2text" ],
2531 entry_points = {
2632 "console_scripts" : [
You can’t perform that action at this time.
0 commit comments