-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·30 lines (26 loc) · 882 Bytes
/
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
import setuptools
import django_sql_sniffer
URL = 'https://github.com/gruuya/django-sql-sniffer'
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
long_description = long_description.replace('', f'[demo]({URL})\\')
setuptools.setup(
name='django-sql-sniffer',
version=django_sql_sniffer.version,
description='Django SQL Sniffer',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='django sql query remote process analysis',
url=URL,
author='Marko Grujic',
author_email='[email protected]',
license='MIT',
install_requires=['django'],
python_requires='>=3.5',
packages=['django_sql_sniffer'],
entry_points=dict(
console_scripts=[
'django-sql-sniffer = django_sql_sniffer.listener:main'
]
)
)