From: Oleg Broytman Date: Tue, 23 Aug 2016 21:59:57 +0000 (+0300) Subject: Add sample and scripts to sdist X-Git-Tag: 0.0.1~23 X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=commitdiff_plain;h=24b3fc77eb89ce451ad0d8089d4652ccd3a9e320 Add sample and scripts to sdist --- diff --git a/setup.py b/setup.py index 45712b2..a5661c7 100755 --- a/setup.py +++ b/setup.py @@ -47,7 +47,10 @@ setup(name='mysql2sql', 'Programming Language :: Python :: 3.4', ], packages=['mysql2sql'], - package_data={'mysql2sql': []}, - scripts=[], + package_data={'mysql2sql': ['../sample/sample.sql']}, + scripts=[ + 'scripts/group-file.py', 'scripts/group-sql.py', + 'scripts/parse-file.py', 'scripts/parse-sql.py', + ], requires=[], **kw)