-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.04 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "qjoin"
description = "qjoin is a data manipulation library that provides simple and efficient joining and collection processing functionality"
authors = ["Fabien Arcellier <fabien.arcellier@gmail.com>"]
license = "MIT"
version = "0.1.0"
readme = "README.md"
packages = [{include = "qjoin", from = "src"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
]
[tool.poetry.urls]
"Source code" = "https://github.com/FabienArcellier/qjoin"
"Documentation" = "https://qjoin.readthedocs.io/en/latest/"
"Issue Tracker" = "https://github.com/FabienArcellier/qjoin/issues"
"Chat" = "https://discord.gg/nMn9YPRGSY"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
alfred-cli = "^2.1.1"
mypy = "^1.4.1"
pytest = "^7.4.0"
toml = "^0.10.2"
sphinx = "^6.0.0"
sphinx-rtd-theme = "^1.2.2"
twine = "^4.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"