diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-04-19 11:34:39 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-04-19 11:34:39 -0400 |
| commit | f24839d6ae7d46c899a0bbf56dbdbf3366fca03c (patch) | |
| tree | 4e1882e8a87db3e94a8b3fbc9f9db867e690691b /setup.py | |
| parent | 72269fbfa1207273486fc03c0b31c6a767fa24d0 (diff) | |
| download | alembic-f24839d6ae7d46c899a0bbf56dbdbf3366fca03c.tar.gz | |
more crap
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -14,13 +14,6 @@ VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(v.read()).group(1) v.close() -def datafiles(): - out = [] - for root, dirs, files in os.walk('./templates'): - if files: - out.append((root, [os.path.join(root, f) for f in files])) - return out - setup(name='alembic', version=VERSION, description="A database migration tool for SQLAlchemy.", @@ -72,8 +65,8 @@ Key goals of Alembic are: url='http://bitbucket.org/zzzeek/alembic', license='MIT', packages=find_packages('.', exclude=['examples*', 'test*']), + include_package_data=True, scripts=['scripts/alembic'], - data_files=datafiles(), tests_require = ['nose >= 0.11'], test_suite = "nose.collector", zip_safe=False, |
