forked from inconshreveable/sqltap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (35 loc) · 1.32 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
from setuptools import setup
long_description = """
sqltap is a library that allows you to profile and introspect the
queries that your application makes using SQLAlchemy.
sqltap helps you quickly understand:
* how many times a sql query is executed
* how much time your sql queries take
* where your application is issuing sql queries from
Full HTML documentation can be generated by sphinx, or browsed online at: http://sqltap.inconshreveable.com
SQLTap is hosted on github at: https://github.com/inconshreveable/sqltap
"""
setup(
name = "sqltap",
version = "0.3.3",
description = "Profiling and introspection for applications using sqlalchemy",
long_description = long_description,
author = "inconshreveable",
author_email = "[email protected]",
url = "https://github.com/inconshreveable/sqltap",
packages = ["sqltap"],
package_data = {"sqltap" : ["templates/*.mako"]},
install_requires = [
"SQLAlchemy >= 0.9",
"Mako >= 0.4.1"
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Database'
]
)