-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (49 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "randomvars"
version = "0.0.0.9000"
description = "Work with Random Variables"
authors = ["Evgeni Chasnovski <[email protected]>"]
license = "MIT"
readme = 'README.md'
repository = "http://github.com/echasnovski/randomvars"
keywords = ['randomvars', 'random', 'distributions']
build = "build.py"
[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.16.0"
scipy = "^1.3.0"
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
cython = "^0.29.20"
black = {version = "^20.8b1", allow-prereleases = true}
pre-commit = { version = "^2.6", python = "^3.7" }
pytest-cov = "^2.10.1"
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')"
]
[tool.black]
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| experiments
)/
'''
[tool.coverage.run]
omit = ["randomvars/tests/*"]
[build-system]
requires = [
"poetry >= 1.0",
"numpy >= 1.16.0",
"cython >= 0.28"
]
build-backend = "poetry.masonry.api"