forked from overlay-market/pystable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.07 KB
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
45
46
[tool.poetry]
name = "pystable"
version = "0.2.3"
description = "Python wrapper for the libstable C library"
authors = [
"RJ Rybarczyk <rj@rybar.tech>",
"Michael Feldman <23126274+mikeyrf@users.noreply.github.com>"
]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/mikeyrf/pystable"
keywords = ['alpha stable', 'distribution', 'statistics', 'probability']
packages = [{include = "pystable"}]
include = [
{path = "pystable/_extensions/*.so", format = "wheel"},
{path = "pystable/_extensions/*.pyd", format = "wheel"}
]
[tool.poetry.dependencies]
python = "^3.9.5"
setuptools = "^57.1.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
hypothesis = "^6.14.1"
flake8 = "^3.9.2"
numpy = "^1.21.0"
pandas = "^1.3.0"
coverage = {version = "^5.5", extras = ["toml"]}
nox = "^2021.6.12"
coverage-badge = "^1.0.1"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "*/tests*"]
[tool.coverage.report]
fail_under = 89
[build-system]
requires = [
"poetry-core>=1.0.0",
"setuptools>=57.0.0,<59.0.0",
"wheel"
]
build-backend = "poetry.core.masonry.api"