Skip to content
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
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,14 @@ To build the package, you will need to install the following packages:

::

pip install setuptools wheel twine
pip install build

Then, from the root directory of the repository, run:

::

rm -rf dist/*
python3 setup.py sdist bdist_wheel
python3 -m build

The package will be built in the ``dist`` directory.

Expand Down
38 changes: 38 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "pystackql"
version = "3.8.0"
description = "A Python interface for StackQL"
readme = "README.rst"
authors = [
{name = "Jeffrey Aven", email = "javen@stackql.io"}
]

license = "MIT"
classifiers = [
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"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",
]
requires-python = ">=3.9"
dependencies = [
"requests",
"pandas",
"IPython",
"psycopg[binary]>=3.1.0",
"nest-asyncio>=1.5.5",
"termcolor>=1.1.0",
"tqdm>=4.61.0",
]

[tool.setuptools]
packages = ["pystackql"]

[project.urls]
Homepage = "https://github.com/stackql/pystackql"
Documentation = "https://pystackql.readthedocs.io"
47 changes: 0 additions & 47 deletions setup.py

This file was deleted.