File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1212eval " $( direnv export bash) "
1313
1414prefix=" dist/db_wrapper-"
15- current_version=` cat app-version`
15+ _current_version_raw=` rg version setup.py`
16+ _current_version_prefix_trimmed=${_current_version_raw# " version=\" " }
17+ current_version=${_current_version_prefix_trimmed% " \" ," }
1618
1719# ../dist/db_wrapper-0.1.0a0-py3-none-any.whl
1820# ../dist/db_wrapper-0.1.0a0.tar.gz
Original file line number Diff line number Diff line change 11import setuptools
22
3- with open ("app-version" , "r" , encoding = "utf-8" ) as fh :
4- version = fh .read ()
5-
63with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
74 long_description = fh .read ()
85
96setuptools .setup (
107 name = "db_wrapper" ,
11- version = version ,
8+ version = "0.1.1" ,
129 author = "Andrew Chang-DeWitt" ,
1310 author_email = "andrew@andrew-chang-dewitt.dev" ,
1411 description = "Simple wrapper on aiopg to handle postgres connections & basic Models." ,
You can’t perform that action at this time.
0 commit comments