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

Update pyproject.toml and README.md #14

Merged
merged 1 commit into from
Dec 23, 2024
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
24 changes: 24 additions & 0 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# MD013/line-length
# (set line length to 120, don't enforce for tables)
MD013:
line_length: 120
tables: false

# MD026/no-trailing-punctuation
# (fussy fussy)
MD026: false

# MD033/no-inline-html
# (allow inline HTML)
MD033: false

# MD041/first-line-h1
# (don't enforce that first line is a top-level heading)
MD041: false

# MD046/code-block-style
MD046: false

# MD052/reference-links-images
# (don't enforce reference links)
MD052: false
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<div align="center">
<img src="https://raw.githubusercontent.com/pixeltable/pixeltable/main/docs/resources/pixeltable-logo-large.png" alt="Pixeltable" width="45%" />
<img src="https://raw.githubusercontent.com/pixeltable/pixeltable/release/docs/resources/pixeltable-logo-large.png"
alt="Pixeltable" width="45%" />
<p></p>


[![License](https://img.shields.io/badge/License-Apache%202.0-darkblue.svg)](https://opensource.org/licenses/Apache-2.0)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pixeltable?logo=python&logoColor=white)
![Platform Support](https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20Windows-E5DDD4)
Expand All @@ -11,6 +11,10 @@
[![PyPI Package](https://img.shields.io/pypi/v/pixeltable-pgserver?color=4D148C)](https://pypi.org/project/pixeltable-pgserver/)
</div>

__pixeltable-pgserver__ is an embedded Postgres server used internally by [Pixeltable](https://github.com/pixeltable/pixeltable). It is a fork of Oscar Moll's [pgserver](https://github.com/orm011/pgserver), which is itself a fork of Michel Pelletier's [postgresql-wheel](https://github.com/michelp/postgresql-wheel).
__pixeltable-pgserver__ is an embedded Postgres server used internally by
[Pixeltable](https://github.com/pixeltable/pixeltable). It is a fork of Oscar Moll's
[pgserver](https://github.com/orm011/pgserver), which is itself a fork of Michel Pelletier's
[postgresql-wheel](https://github.com/michelp/postgresql-wheel).

For Pixeltable documentation and installation instructions, visit the main [Pixeltable project page](https://github.com/pixeltable/pixeltable).
For Pixeltable documentation and installation instructions, visit the main
[Pixeltable repository](https://github.com/pixeltable/pixeltable).
26 changes: 22 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,36 @@ build-backend = "setuptools.build_meta"
name = "pixeltable-pgserver"
version = "0.2.8"
description = "Embedded Postgres Server for Pixeltable"
authors = [{ name = "Pixeltable, Inc.", email = "contact@pixeltable.com" }]
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
urls = { repository = "https://github.com/pixeltable/pixeltable-pgserver" }
authors = [{ name = "Pixeltable, Inc.", email = "contact@pixeltable.com" }]
keywords = ["postgresql", "pgvector", "pgserver", "pixeltable", "rag"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"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",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"fasteners>=0.19",
"platformdirs>=4.0.0",
"psutil>=5.9.0",
]

[project.urls]
homepage = "https://pixeltable.com/"
repository = "https://github.com/pixeltable/pixeltable-pgserver"
documentation = "https://docs.pixeltable.com/"

[project.optional-dependencies]
dev = [
"ruff",
Expand Down
Loading