-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
161 lines (144 loc) · 3.95 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
[build-system]
requires = [
"setuptools>=61.0.0",
"setuptools-git-versioning<3",
"versioneer[toml]>=0.29,<1.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "pymovements"
description = "A python package for processing eye movement data"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT License"}
maintainers = [
{name = "Daniel Krakowczyk", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Typing :: Typed"
]
dependencies = [
"matplotlib>=3.8.0,<3.11",
"numpy>=1.22.4,<3",
"pandas>=2.1.4,<3",
"polars>=1.8.2,<2",
"pyarrow>=11.0.0,<19",
"pyopenssl>=16.0.0,<25.0.0",
"scipy>=1.8.0,<2",
"tqdm>=4.27.0,<5",
"typing_extensions>=4.0.0,<5"
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"ipykernel>=6.13.0",
"nbconvert>=7.0.0,<7.17",
"nbsphinx>=0.8.8,<0.9.6",
"pandoc",
"pybtex",
"pydata-sphinx-theme>=0.12",
"setuptools>=61.0.0",
"sphinx>=5.3.0,<7.4",
"sphinx-copybutton>=0.4.0",
"sphinx-favicon>=1.0.1",
"sphinx_design>=0.3.0",
"sphinx_mdinclude>=0.5.0",
"sphinxcontrib.datatemplates>=0.9.0",
"sphinxcontrib.bibtex>=2.4.1"
]
test = [
"pybtex",
"pytest>=6.0.0",
"pytest-cov>=4.0.0",
"setuptools>=61.0.0",
"types-tqdm>=4.64.0,<5",
"typing_extensions>=4.0.0,<5"
]
[project.urls]
Homepage = "https://github.com/aeye-lab/pymovements"
"Source Code" = "https://github.com/aeye-lab/pymovements"
Documentation = "https://pymovements.readthedocs.io/en/stable"
"Bug Tracker" = "https://github.com/aeye-lab/pymovements/issues"
Changelog = "https://github.com/aeye-lab/pymovements/releases"
[tool.autoflake]
in-place = true
remove-all-unused-imports = true
ignore-init-module-imports = true
[tool.autopep8]
max_line_length = 100
in-place = true
recursive = true
aggressive = 1
[tool.coverage.paths]
source = [
'{toxworkdir}/src/pymovements',
'*/.tox/*/lib/python*/site-packages/pymovements',
'*/src/pymovements'
]
[tool.coverage.report]
skip_covered = true
show_missing = true
[tool.coverage.run]
parallel = true
branch = true
omit = [
'docs/*',
'src/pymovements/_version.py',
'tests/*'
]
[tool.doc8]
max-line-length = 100
[tool.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
warn_redundant_casts = true
disable_error_code = ["override"]
[[tool.mypy.overrides]]
module = "scipy.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "tests.*"
check_untyped_defs = false
disallow_untyped_defs = false
[[tool.mypy.overrides]]
module = "docs.*"
check_untyped_defs = false
disallow_untyped_defs = false
[tool.pydoclint]
skip-checking-raises = true
[tool.pytest.ini_options]
addopts = "-ra -l --tb=long --doctest-modules"
doctest_optionflags = "NORMALIZE_WHITESPACE"
filterwarnings = [
"error",
"ignore:pkg_resources is deprecated.*:DeprecationWarning",
"ignore:Deprecated call to `pkg_resources.declare_namespace.*:DeprecationWarning",
"ignore:distutils Version classes are deprecated. Use packaging.version instead.:DeprecationWarning",
"ignore:FigureCanvasAgg is non-interactive, and thus cannot be shown:UserWarning",
"ignore:datetime.datetime.utcfromtimestamp() is deprecated.*:DeprecationWarning"
]
testpaths = ['tests', 'src']
[tool.setuptools-git-versioning]
enabled = true
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/pymovements/_version.py"
versionfile_build = "src/pymovements/_version.py"
tag_prefix = "v"
parentdir_prefix = "pymovements-"