-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move to pyproject.toml * update CHANGELOG * use build utility * build only wheel * keep module in project root
- Loading branch information
Showing
12 changed files
with
75 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
build/ | ||
pkg/reduct/VERSION | ||
reduct/VERSION | ||
*.egg-info | ||
.venv | ||
.gitignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,66 @@ | ||
[build-system] | ||
requires = ["setuptools>=40.8.0", "wheel"] | ||
|
||
[project] | ||
|
||
name = "reduct-py" | ||
version = "1.1.0" | ||
description = "ReductStore Client SDK for Python" | ||
requires-python = ">=3.7" | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
keywords = ["sdk", "reductstore", "api client", "database", "time series database"] | ||
authors = [ | ||
{ name = "Alexey Timin", email = "[email protected]" }, | ||
{ name = "Ciaran Moyne" } | ||
] | ||
maintainers = [ | ||
{ email = "[email protected]", name = "Alexey Timin" } | ||
] | ||
|
||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Framework :: aiohttp", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"Operating System :: OS Independent", | ||
"Topic :: Database :: Front-Ends", | ||
"License :: OSI Approved :: MIT License", | ||
] | ||
|
||
dependencies = ["aiohttp~=3.8", "pydantic~=1.9", "deprecation~=2.1"] | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest~=7.1", | ||
"pytest-mock~=3.10", | ||
"pytest-asyncio~=0.18" | ||
] | ||
|
||
lint = ["pylint~=2.14"] | ||
format = ["black~=22.6"] | ||
docs = [ | ||
"mkdocs~=1.3", | ||
"mkdocs-material~=8.3", | ||
"plantuml-markdown~=3.5", | ||
"mkdocs-same-dir~=0.1", | ||
"mkdocstrings[python]~=0.19" | ||
] | ||
|
||
[project.urls] | ||
ReductStore = "https://www.reduct.store" | ||
Documentation = "https://py.reduct.store/" | ||
Source = "https://github.com/reductstore/reduct-py" | ||
Changelog = "https://github.com/reductstore/reduct-py/blob/main/CHANGELOG.md" | ||
Twitter = "https://twitter.com/ReductStore" | ||
Blog = "https://dev.to/reductstore" | ||
|
||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "strict" | ||
|
||
[tool.pylint] | ||
max-line-length = 88 | ||
extension-pkg-whitelist = "pydantic" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.