-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (53 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
57
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "pitci"
author = "Richard Angell"
author-email = "[email protected]"
home-page = "https://github.com/richardangell/pitci"
requires=[
"numpy>=1.9",
"pandas>=1.0.0",
"custom_inherit==2.3.1"
]
requires-python=">=3.6"
description-file="README.md"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
[tool.flit.metadata.requires-extra]
xgboost = [
"xgboost>=0.82"
]
lightgbm = [
"lightgbm>=3.0.0"
]
test = [
"pre-commit==2.11.1",
"pytest==6.2.3",
"pytest-cov==2.11.1",
"pytest-mock==3.5.1",
"black==20.8b1",
"flake8==3.9.0",
"bandit==1.7.0",
"mypy==0.812",
"scikit-learn>=0.22.1",
"xgboost>=0.82",
"lightgbm>=3.0.0"
]
doc = [
"Sphinx==3.5.4",
"sphinx-rtd-theme==0.5.2",
"numpydoc==1.1.0",
]
[tool.flit.metadata.urls]
Documentation = "https://pitci.readthedocs.io/en/latest/"
PyPI = "https://pypi.org/project/pitci/"
[tool.flit.sdist]
exclude = [
"examples/",
"docs",
]