-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
56 lines (49 loc) · 1.11 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 = PyNeuroMatic
version = 0.0.1
author = Jason Rothman
author_email = [email protected]
url = https://github.com/jasonsethrothman/pyneuromatic/
license = GPL-3.0-only
description = NeuroMatic in Python
long_description = file: README.md
long_description_content_type = text/markdown
classifiers=
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
[options]
install_requires =
typing; python_version<"3.5"
numpy
h5py
colorama
packages = find:
[options.packages.find]
where = .
include = pyneuromatic*
[options.package_data]
* =
lib/*.jar
*.xml
*.html
*.md
*.xsl
*.hoc
[options.extras_require]
dev =
pytest
pytest-cov
pre-commit
black
isort
flake8
mypy
[flake8]
extend-ignore = E501, E502, F403, F405, W503, W504