File tree Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ def run(arguments):
10
10
project = parse_project_config ()
11
11
command_name = command_to_run (arguments )
12
12
if command_name .lower () == "help" :
13
- print help_message (project )
13
+ print ( help_message (project ) )
14
14
else :
15
15
command = project .get_command (command_name )
16
16
execute (command )
17
17
except ValueError as error :
18
- print error
18
+ print ( error )
19
19
20
20
21
21
class Project :
Original file line number Diff line number Diff line change 1
- PyYAML == 5.1
1
+ PyYAML == 3.12
Original file line number Diff line number Diff line change
1
+ import setuptools
2
+
3
+ with open ("README.md" , "r" ) as fh :
4
+ long_description = fh .read ()
5
+ setuptools .setup (
6
+ name = 'gopitest' ,
7
+ version = '0.0.1' ,
8
+ scripts = ['1build' ],
9
+ author = "Gopinath Langote" ,
10
+ install_requires = ['PyYAML>=3.12' ],
11
+
12
+ description = "1build utility" ,
13
+ long_description = long_description ,
14
+ long_description_content_type = "text/markdown" ,
15
+ url = "https://github.com/gopinath-langote/1build" ,
16
+ packages = [],
17
+ classifiers = [
18
+ "Programming Language :: Python :: 3" ,
19
+ "License :: OSI Approved :: MIT License" ,
20
+ "Operating System :: OS Independent" ,
21
+ ],
22
+ )
You can’t perform that action at this time.
0 commit comments