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
+
1
3
import pathlib
2
- from setuptools import find_packages , setup
4
+ from setuptools import setup
3
5
4
6
# The directory containing this file
5
7
HERE = pathlib .Path (__file__ ).parent
6
8
9
+ # The text of the README file
10
+ README = (HERE / "README.md" ).read_text ()
11
+
7
12
13
+ # This call to setup() does all the work
8
14
setup (
9
15
name = "realpython-reader" ,
10
16
version = "0.0.1" ,
11
17
description = "Read Real Python Tutorials" ,
12
- long_description = ( HERE / " README.md" ). read_text () ,
18
+ long_description = README ,
13
19
long_description_content_type = "text/markdown" ,
14
20
url = "https://github.com/realpython/reader" ,
15
21
author = "Real Python" ,
20
26
"Programming Language :: Python" ,
21
27
"Programming Language :: Python :: 3" ,
22
28
],
23
- packages = find_packages ( exclude = ( "tests" ,)) ,
29
+ packages = [ "reader" ] ,
24
30
install_requires = ["feedparser" , "html2text" ],
25
31
entry_points = {
26
32
"console_scripts" : [
You can’t perform that action at this time.
0 commit comments