реалзовал создание архива для распространения

This commit is contained in:
rzaitov 2013-11-06 19:38:12 +04:00
parent 3488f9c8d3
commit 8b02027bf2
4 changed files with 11 additions and 7 deletions

View File

@ -1,4 +1,5 @@
# file GENERATED by distutils, do NOT edit # file GENERATED by distutils, do NOT edit
README.txt
setup.py setup.py
CommandBuilders/CleanBuildCommandBuilder.py CommandBuilders/CleanBuildCommandBuilder.py
CommandBuilders/CopyCommandBuilder.py CommandBuilders/CopyCommandBuilder.py

1
scripts/README.txt Normal file
View File

@ -0,0 +1 @@
see http://touchin.ru

3
scripts/runbuild Normal file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
python setup.py sdist

View File

@ -1,16 +1,15 @@
from distutils.core import setup from distutils.core import setup
setup( setup(name= 'TouchinBuild',
name = 'TouchinBuild', version= '0.0.10',
version = '0.0.10', packages= ['Core', 'Core.LineConveyor',
packages = ['Core', 'Core.LineConveyor',
'utils', 'utils.SettingsProvider', 'utils', 'utils.SettingsProvider',
'parser', 'parser.CopyParser', 'parser.BackupParser', 'parser.InsideParser', 'parser.SettingsParser', 'parser', 'parser.CopyParser', 'parser.BackupParser', 'parser.InsideParser', 'parser.SettingsParser',
'commands', 'commands.CleanBuildCommands', 'commands', 'commands.CleanBuildCommands',
'CommandBuilders'], 'CommandBuilders'],
url = 'http://touchin.ru', url = 'http://touchin.ru',
license = '', license = 'All rights reserved.',
description = 'Build tool for Touchin',
author = 'Rustam Zaitov', author = 'Rustam Zaitov',
author_email = 'rustam.zaitov@touchin.ru', author_email = 'rustam.zaitov@touchin.ru'
description = 'Build tool for Touchin'
) )