-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
56 lines (52 loc) · 1.42 KB
/
setup.cfg
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
[metadata]
name = trajectoryflow
version = 0.0.1
description = Trajectory Flow
author = Alan R. Lowe
author_email = a.lowe@ucl.ac.uk
url = https://github.com/lowe-lab-ucl/trajectoryflow
license = BSD 3-Clause
license_file = LICENSE.md
long_description = file: README.md
long_description_content_type = text/markdown
classifier =
Programming Language :: C++
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Image Recognition
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
[options]
packages = find:
python_requires = >=3.8
include_package_data = True
install_requires =
numpy
scipy
tqdm
[options.extras_require]
dev =
pytest
pre-commit
[tox]
isolated_build: true
[flake8]
# Ignores - https://lintlyci.github.io/Flake8Rules
# E203 Whitespace before ':' (sometimes conflicts with black)
# E501 line too long (84 > 79 characters)
# E731 do not assign a lambda function
# W503 Line break occurred before a binary operator
# C901 McCabe complexity test.
ignore = E203, W503, E501, E731, C901
max-line-length = 79
max-complexity = 18
exclude = __init__.py|examples
per-file-ignores =
# imported but unused
__init__.py: F401