-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 888 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
version = "0.1.6"
with open("README.md", encoding="utf-8") as readme_file:
readme = readme_file.read()
requirements = ["click>=7.1", "xlrd==1.2.0", "pywebio"]
setup(
name="sqlgen",
version=version,
description=("Infers SQL DDL (Data Definition Language) from template file"),
long_description=readme,
long_description_content_type="text/markdown",
author="wangzhiwei",
author_email="[email protected]",
url="http://git.patsnap.com/wangzhiwei/sqlgen.git",
packages=find_packages(),
python_requires=">=3.7",
install_requires=requirements,
license=None,
zip_safe=False,
keywords=[
"sqlgen",
"Python",
"MySQL",
"DDL",
],
entry_points={"console_scripts": ["sqlgen = sqlgen.__main__:main"]},
)