-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1007 Bytes
/
setup.py
File metadata and controls
43 lines (39 loc) · 1007 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!python
# -*- coding: UTF-8 -*-
"""
Setup script for building sqlautocode
"""
version = '0.6b1'
from setuptools import setup, find_packages
setup (name = 'sqlautocode',
version = version,
description = 'AutoCode is a flexible tool to autogenerate a model from an existing database.',
author = 'Simon Pamies',
author_email = 's.pamies@banality.de',
url = 'http://code.google.com/p/sqlautocode/',
packages = find_packages(exclude=['ez_setup', 'tests']),
zip_safe=True,
license = 'MIT',
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
],
entry_points = dict(
console_scripts = [
'sqlautocode = sqlautocode.main:main',
],
),
install_requires=[
'sqlalchemy'
],
include_package_data=True,
extras_require = {
},
dependency_links = [
],
tests_require=[
'nose>=0.10',
],
test_suite = "nose.collector",
)