File tree Expand file tree Collapse file tree 4 files changed +16
-8
lines changed
Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.1.0
2+ current_version = 0.1.1
33commit = False
44tag = False
55
6+ [bumpversion:file:setup.py]
7+
68[bumpversion:file:reader/__init__.py]
79
8- [bumpversion:file:setup .py]
10+ [bumpversion:file:reader/__main__ .py]
911
Original file line number Diff line number Diff line change 99See https://github.com/realpython/reader/ for more information
1010"""
1111# Version of realpython-reader package
12- __version__ = "0.1.0 "
12+ __version__ = "0.1.1 "
1313
1414# URL of Real Python feed
1515URL = "https://realpython.com/atom.xml"
Original file line number Diff line number Diff line change 3535
3636- https://pypi.org/project/realpython-reader/
3737- https://github.com/realpython/reader
38+
39+
40+ Version:
41+ --------
42+
43+ - realpython-reader v0.1.1
3844"""
3945# Standard library imports
4046import sys
Original file line number Diff line number Diff line change 11"""Setup script for realpython-reader"""
22
3- import pathlib
3+ import os . path
44from setuptools import setup
55
66# The directory containing this file
7- HERE = pathlib . Path ( __file__ ). parent
7+ HERE = os . path . abspath ( os . path . dirname ( __file__ ))
88
99# The text of the README file
10- README = ( HERE / "README.md" ). read_text ()
11-
10+ with open ( os . path . join ( HERE , "README.md" )) as fid :
11+ README = fid . read ()
1212
1313# This call to setup() does all the work
1414setup (
1515 name = "realpython-reader" ,
16- version = "0.1.0 " ,
16+ version = "0.1.1 " ,
1717 description = "Read Real Python tutorials" ,
1818 long_description = README ,
1919 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments