Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: move to pyproject.toml #47

Merged
merged 1 commit into from
Jul 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
- run:
name: Install dependencies
command: |
pip install --upgrade pip
pip install .
pip install coverage
- run:
Expand Down
29 changes: 29 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "sqlite-s3-query"
version = "0.0.74"
authors = [
{ name="Michal Charemza", email="[email protected]" },
]
description = "Python context manager to query a SQLite file stored on S3"
readme = "README.md"
requires-python = ">=3.6.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"httpx>=0.18.2",
]

[project.urls]
"Home-page" = "https://github.com/michalc/sqlite-s3-query"

[tool.hatch.build]
include = [
"sqlite_s3_query.py"
]
30 changes: 0 additions & 30 deletions setup.py

This file was deleted.