-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.14 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
56
[build-system]
requires = [
"poetry>=0.12",
]
build-backend = "poetry.masonry.api"
[tool.isort]
profile = "black"
[tool.poetry]
name = "rle-array"
description = "Run-length encoded pandas."
authors= [
"Blue Yonder Group, Inc",
]
version = "0.1"
readme = "README.rst"
license = "MIT"
packages = [
{ include = "rle_array" },
]
repository = "https://github.com/JDASoftwareGroup/rle_array"
keywords = [
"python",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = ">=3.6.1,<3.9"
llvmlite = "<=0.33.0" # installing with poetry seems broken for 0.34.0rc1
numba = ">=0.45"
numpy = ">=1.17"
pandas = ">=1.1,<1.2"
[tool.poetry.dev-dependencies]
asv = "*"
black = "19.10b0"
flake8-mutable = "1.2.0"
flake8 = "3.8.3"
isort = "5.0.9"
mypy = "*"
pytest = ">=6"
pytest-cov = "*"
setuptools_scm = "*"
sphinx = "*"
[tool.pytest.ini_options]
addopts = "--cov=rle_array --cov-report term-missing --cov-report xml"
testpaths = "tests"