File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,5 +5,8 @@ end_of_line = lf
55trim_trailing_whitespace = true
66indent_size = 2
77
8+ [* .txt ]
9+ insert_final_newline = false
10+
811[* .py ]
912indent_size = 4
Original file line number Diff line number Diff line change 1+ 3.1.2
Original file line number Diff line number Diff line change 44with open ("README.md" , 'r' ) as fi : # pragma: no cover
55 long_desc = fi .read ()
66
7+ with open ("VERSION.txt" , 'r' ) as ver : # pragma: no cover
8+ version = ver .read ()
9+
710setup ( # pragma: no cover
811 name = 'commit-helper' ,
912 description = "A python program that helps you write commits following commit conventions" , # nopep8
1215 long_description_content_type = 'text/markdown' ,
1316 author = 'Andre de Sousa Costa Filho' ,
1417 author_email = 'andre.filho001@outlook.com' ,
15- version = '3.1.2' ,
18+ version = str ( version ). replace ( ' \n ' , '' ) ,
1619 packages = find_packages (),
1720 entry_points = {
1821 'console_scripts' : [
You can’t perform that action at this time.
0 commit comments