diff --git a/scripts/MANIFEST b/scripts/MANIFEST index dcf94dc..630d501 100644 --- a/scripts/MANIFEST +++ b/scripts/MANIFEST @@ -1,4 +1,5 @@ # file GENERATED by distutils, do NOT edit +README.txt setup.py CommandBuilders/CleanBuildCommandBuilder.py CommandBuilders/CopyCommandBuilder.py diff --git a/scripts/README.txt b/scripts/README.txt new file mode 100644 index 0000000..e666648 --- /dev/null +++ b/scripts/README.txt @@ -0,0 +1 @@ +see http://touchin.ru \ No newline at end of file diff --git a/scripts/runbuild b/scripts/runbuild new file mode 100644 index 0000000..0f3fb6d --- /dev/null +++ b/scripts/runbuild @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +python setup.py sdist \ No newline at end of file diff --git a/scripts/setup.py b/scripts/setup.py index f6454a4..c51cdf6 100644 --- a/scripts/setup.py +++ b/scripts/setup.py @@ -1,16 +1,15 @@ from distutils.core import setup -setup( - name = 'TouchinBuild', - version = '0.0.10', - packages = ['Core', 'Core.LineConveyor', +setup(name= 'TouchinBuild', + version= '0.0.10', + packages= ['Core', 'Core.LineConveyor', 'utils', 'utils.SettingsProvider', 'parser', 'parser.CopyParser', 'parser.BackupParser', 'parser.InsideParser', 'parser.SettingsParser', 'commands', 'commands.CleanBuildCommands', 'CommandBuilders'], url = 'http://touchin.ru', - license = '', + license = 'All rights reserved.', + description = 'Build tool for Touchin', author = 'Rustam Zaitov', - author_email = 'rustam.zaitov@touchin.ru', - description = 'Build tool for Touchin' + author_email = 'rustam.zaitov@touchin.ru' )