-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.32 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.32 KB
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
"""Setup script for pygosqlx - Python bindings for GoSQLX SQL parser."""
import os
from setuptools import setup, find_packages
long_description = ""
readme_path = os.path.join(os.path.dirname(__file__), "README.md")
if os.path.exists(readme_path):
with open(readme_path, encoding="utf-8") as f:
long_description = f.read()
setup(
name="pygosqlx",
version="0.1.0",
description="Python bindings for GoSQLX - High-performance SQL parser",
long_description=long_description,
long_description_content_type="text/markdown",
author="GoSQLX Contributors",
url="https://github.com/ajitpratap0/GoSQLX",
packages=find_packages(),
package_data={"pygosqlx": ["lib/*", "py.typed"]},
python_requires=">=3.8",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
],
)