-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.84 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = [
"setuptools>=45",
"wheel",
"numpy>=1.19.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "pattern-causality"
version = "1.0.4"
description = "Pattern Causality Algorithm in Python"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "BSD License"}
authors = [
{name = "Stavros Stavroglou", email = "stavros.k.stavroglou@gmail.com"},
{name = "Athanasios Pantelous", email = "Athanasios.Pantelous@monash.edu"},
{name = "Hui Wang", email = "huiw1128@gmail.com"},
]
maintainers = [
{name = "Hui Wang", email = "huiw1128@gmail.com"},
]
dependencies = [
"numpy>=1.19.0",
"pandas>=1.0.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/pattern-causality/pattern_causality_py"
Repository = "https://github.com/pattern-causality/pattern_causality_py.git"
Documentation = "https://github.com/pattern-causality/pattern_causality_py#readme"
[tool.setuptools]
packages = ["pattern_causality"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --cov=pattern_causality"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov>=2.0",
"black>=22.0",
"isort>=5.0",
"flake8>=4.0",
]
[tool.black]
line-length = 88
target-version = ['py38']
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
^/pattern_causality/pattern_causality.py
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
skip = ["pattern_causality/pattern_causality.py"]
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = true