-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.06 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
[build-system]
requires = [
"poetry-core>=1.0.0",
]
build-backend = "poetry.core.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"
numba = ">=0.51.2"
numpy = ">=1.17"
pandas = ">=1.1.5,<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 = "*"
sphinx = "*"
[tool.pytest.ini_options]
addopts = "--cov=rle_array --cov-report term-missing --cov-report xml"
testpaths = "tests"