-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 902 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
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
"""
Title: pyauth setup.
Created on Tue Dec 9 15:27:19 2021
@author: Ujjawal.K.Panchal, @Email: [email protected]
Copyright (C) Ujjawal K. Panchal - All Rights Reserved.
---
"""
from setuptools import setup
desc = """
Title: pysecuresql: Simple SQL connection handling by avoiding SQL injection.
---
Contents:
1.) ssql.: Secure SQL.
@author: Ujjawal.K.Panchal, @Email: [email protected]
---
Copyright (C) Ujjawal K. Panchal - All Rights Reserved.
---
"""
package_list = ['ssql',]
setup(
name = "pysecuresql",
version = "1.0.0",
description = desc,
url = "#",
author = "Ujjawal K. Panchal",
author_email = "[email protected]",
license = "BSD3.",
packages = package_list,
install_requires=["mysql-connector>=2.2.9",],
python_requires=">=3.8.5",
zip_safe = False
)