-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (41 loc) · 1.27 KB
/
setup.py
File metadata and controls
47 lines (41 loc) · 1.27 KB
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
45
46
47
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
LONG_DESCRIPTION = """
""".strip()
SHORT_DESCRIPTION = """
Django Debug Query (ddquery) beautiful colored SQL statements for logging
""".strip()
DEPENDENCIES = [
'Pygments>=2.2.0',
'sqlparse>=0.2.3'
]
TEST_DEPENDENCIES = [
'coverage==4.4.1'
]
setup(
name='ddquery',
version='0.1',
description=SHORT_DESCRIPTION,
long_description=LONG_DESCRIPTION,
url='https://github.com/elinaldosoft/ddquery.git',
download_url='https://github.com/elinaldosoft/ddquery/archive/0.1.zip',
author='Elinaldo Monteiro',
author_email='elinaldo.java@gmail.com',
license='GNU General Public License v3.0',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
],
py_modules=['ddquery'],
install_requires=DEPENDENCIES,
tests_require=TEST_DEPENDENCIES
)