-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 777 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="sqlalchemy-sql-migrate",
version="0.2",
author="Daniel Nordberg",
author_email="dnordberg@gmail.com",
description=("Very simple manual sql or python migrations for SQLAlchemy."),
license="BSD",
install_requires=["docopt"],
keywords="python sqlalchemy migrate migration",
url="http://github.com/dnordberg/sqlalchemy-sql-migrate",
packages=['sqlalchemysqlmigrate',],
long_description=read('README.rst'),
scripts=['sqlalchemysqlmigrate/sqlmigrate',],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: BSD License",
],
)