forked from barrust/pyprobables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.22 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
37
38
39
40
41
42
43
44
[tool.poetry]
name = "pyprobables"
version = "0.4.1"
description = "Probabilistic data structures in Python"
authors = ["Tyler Barrus <[email protected]>"]
license = "MIT"
homepage = "https://github.com/barrust/pyprobables"
repository = "https://github.com/barrust/pyprobables/issues"
documentation = "https://pyprobables.readthedocs.io/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
packages = [
{ include = "probables" },
]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.5"
numpy = "^1.18.5"
[tool.poetry.dev-dependencies]
pre-commit = {version = "^2.7.1", python = "^3.6.1"}
black = {version = "^20.8b1", python = "^3.6"}
isort = {version = "^5.6.4", python = "^3.6"}
pytest = {version = "^6.1.1", python = "^3.5"}
flake8 = {version = "^3.6.0", python = "^3.5"}
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
target-version = ['py35']
include = '\.pyi?$'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"