-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 755 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 755 Bytes
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
from distutils.core import setup
from setuptools import find_packages
setup(name='sqlmat',
version='0.2.21',
description='simply map python3 statement to postgresql statement',
author='Zeng Ke',
author_email='superisaac.ke@gmail.com',
packages=find_packages(),
tests_require = [
'pytest',
'pytest-asyncio'
],
install_requires=[
'pydantic >= 2.6.0',
'asyncpg >= 0.25.0',
'alembic >= 1.7.5'
],
entry_points={
'console_scripts': [
'sqlmat-genmigrate = sqlmat.utils:cl_gen_migrate',
'sqlmat-shell = sqlmat.utils:cl_run_shell',
'sqlmat-dump = sqlmat.utils:cl_run_dbdump',
],
},
)