-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
61 lines (56 loc) · 1.86 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from setuptools import setup
from os import path
import sqllex
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='sqllex',
packages=[
'sqllex',
'sqllex.classes',
'sqllex.constants',
'sqllex.core',
'sqllex.core.entities',
'sqllex.core.entities.abc',
'sqllex.core.entities.postgresqlx',
'sqllex.core.entities.sqlite3x',
'sqllex.core.tools',
'sqllex.core.tools.convertors',
'sqllex.core.tools.docs_helpers',
'sqllex.core.tools.parsers',
'sqllex.core.tools.sorters',
'sqllex.debug',
'sqllex.exceptions',
'sqllex.old',
'sqllex.types',
],
version=sqllex.__version__,
license='gpl-3.0',
description='The most pythonic ORM (for SQLite and PostgreSQL). Seriously, try it out!',
author='v1a0',
author_email='contact@v1a0.dev',
url="https://github.com/v1a0/sqllex",
download_url=f"https://github.com/V1A0/sqllex/archive/refs/tags/v{sqllex.__version__}.tar.gz",
keywords=[
'sqllex', 'sql', 'db', 'database',
'sqlite3', 'sqlite', 'SQLite3', 'SQLite3x',
'psycopg2', 'postgresql', 'postgres', 'psql',
'easy', 'fast', 'orm', 'ORM',
],
install_requires=[
'loguru==0.6.0',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Database',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
],
long_description=long_description,
long_description_content_type='text/markdown',
)
# https://pypi.org/classifiers/