-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (45 loc) · 1.24 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
[metadata]
name = yeast_mrcnn
version = attr: yeast_mrcnn._version.__version__
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Hekstra-Lab/yeast-mcrnn
author = Ian Hunt-Isaak, John Russell
author_email = ianhuntisaak@g.harvard.edu, johnrussell@g.harvard.edu
license = MIT
license_file = LICENSE
platforms = Linux, Mac OS X, Windows
classifiers =
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
[options]
packages = find:
install_requires =
dask
fast-overlap
numpy
pandas
read_roi
tifffile
torch
python_requires = >=3.6
[options.extras_require]
test =
black
fsspec>=0.3.3
pytest
[flake8]
max-line-length = 88
docstring-convention = numpy
ignore = D100, D213, D401, D413, D107, W503, E501, E203
per-file-ignores =
*/__init__.py: F401, F403