-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·44 lines (40 loc) · 1.01 KB
/
setup.py
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
44
#!/usr/bin/env python
import sys
from setuptools import setup
install_requires = [
"daff >= 1.3.14",
"openpyxl >= 2.4.1",
"six >= 1.7.3",
"SQLAlchemy >= 1.0.11",
"parsedatetime == 2.5",
]
if sys.version_info[0] == 2:
install_requires.append('unicodecsv')
setup(name="catsql",
version="0.4.13",
author="Paul Fitzpatrick",
author_email="[email protected]",
description="Display a quick view of sql databases (and make quick edits)",
packages=['catsql', 'catsql.daffsql'],
entry_points={
"console_scripts": [
"catsql=catsql.main:main",
"patchsql=catsql.patch:main"
]
},
install_requires=install_requires,
extras_require={
"postgres": [
"psycopg2"
],
"mysql": [
"mysqlclient"
]
},
tests_require=[
'mock',
'nose'
],
test_suite="nose.collector",
url="https://github.com/paulfitz/catsql"
)