Skip to content

Commit dd7496a

Browse files
committed
add supporting files
1 parent 960916d commit dd7496a

File tree

4 files changed

+62
-1
lines changed

4 files changed

+62
-1
lines changed

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Python
2+
parseable_connector/__pycache__/
3+
__pycache__/
4+
*.py[cod]
5+
*$py.class
6+
*.so
7+
.Python
8+
build/
9+
develop-eggs/
10+
dist/
11+
downloads/
12+
eggs/
13+
.eggs/
14+
lib/
15+
lib64/
16+
parts/
17+
sdist/
18+
var/
19+
wheels/
20+
*.egg-info/
21+
.installed.cfg
22+
*.egg
23+
24+
# Virtual Environment
25+
venv/
26+
ENV/
27+
env/
28+
29+
# IDE
30+
.idea/
31+
.vscode/
32+
*.swp
33+
*.swo
34+
35+
# OS
36+
.DS_Store
37+
Thumbs.db

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.md
2+
include LICENSE

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools>=45", "wheel"]
3+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
1-
# setup.py
21
from setuptools import setup, find_packages
32

3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
46
setup(
57
name="sqlalchemy-parseable",
68
version="0.1.0",
9+
author="Parseable",
10+
author_email="[email protected]",
711
description="SQLAlchemy dialect for Parseable",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/parseablehq/sqlalchemy-parseable",
815
packages=find_packages(),
16+
classifiers=[
17+
"Intended Audience :: Developers",
18+
"License :: OSI Approved :: Apache Software License",
19+
"Operating System :: OS Independent",
20+
"Programming Language :: Python :: 3",
21+
"Programming Language :: Python :: 3.8",
22+
"Programming Language :: Python :: 3.9",
23+
"Programming Language :: Python :: 3.10",
24+
"Programming Language :: Python :: 3.11",
25+
"Topic :: Database",
26+
],
27+
python_requires=">=3.8",
928
install_requires=[
1029
"sqlalchemy>=1.4.0",
1130
"requests>=2.25.0"

0 commit comments

Comments
 (0)