-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
88 lines (80 loc) · 2.05 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["parshift"]
[project]
name = "parshift"
version = "1.0.1"
description = "Python package based on Gibson's framework (2003) for turn-taking in group conversation analysis."
readme = "README.md"
requires-python = ">=3.8"
keywords = [
"python",
"conversation-analysis",
"participation-shifts",
"turn-taking" ]
license = {text = "MIT"}
authors = [
{name = "Bruno Saraiva", email = "[email protected]"},
{name = "João Pedro Carvalho", email = "[email protected]" },
{name = "Nuno Fachada", email = "[email protected]" },
{name = "Manuel Pita", email = "[email protected]" } ]
dependencies = ["pandas", "matplotlib", "squarify"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering" ]
[project.urls]
"Homepage" = "https://github.com/bdfsaraiva/parshift"
"Bug Tracker" = "https://github.com/bdfsaraiva/parshift/issues"
"Documentation" = "https://bdfsaraiva.github.io/parshift/"
[project.optional-dependencies]
dev = [
"black",
"mkdocs-material>=7.1.11",
"mkdocstrings[python]>=0.19.0",
"mypy>=1.0",
"pandas-stubs>=1.5.0",
"pytest>=7.2.0",
"pytest-mypy>=0.10",
"pytest-cov>=4.0.0" ]
[tool.pytest.ini_options]
minversion = "7.2"
addopts = "--doctest-modules --mypy"
norecursedirs = [
"hooks",
"*.egg",
".eggs",
"dist",
"build",
"docs",
".tox",
".git",
"__pycache__" ]
testpaths = ["parshift", "tests"]
[tool.mypy]
python_version = 3.8
[[tool.mypy.overrides]]
module = [ "squarify", "matplotlib", "matplotlib.pyplot"]
ignore_missing_imports = true
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''