-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (23 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
26 lines (23 loc) · 892 Bytes
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
[tool.poetry]
name = "py-linq"
version = "1.4.0"
description = "LINQ (Language Integrated Query) is a popular querying language available in .NET. This library ports the language so that developers can query collections of objects using the same syntax. This library would be useful for Python developers with experience using the expressiveness and power of LINQ."
authors = ["Bruce Fenske <bwfenske@ualberta.ca>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/viralogic/py-enumerable"
homepage = "https://github.com/viralogic/py-enumerable"
keywords = ["LINQ", "py-linq"]
[tool.poetry.dependencies]
python = ">=3.6.1"
future = "^0.18.2"
six = "^1.16.0"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
pytest-cov = "^2.10.1"
black = "^20.8b1"
pre-commit = "^2.8.2"
flake8 = "^3.8.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"