-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.cfg
52 lines (44 loc) · 1.3 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
[metadata]
name = OSBModelValidation
version = 0.3.6
author = Boris Marin, Padraig Gleeson
author_email = borismarin@gmail.com
url = https://github.com/OpenSourceBrain/osb-model-validation
license = LGPL-3.0-only
description = Open Source Brain Model validation
long_description = file: README.md
long_description_content_type = text/markdown
classifiers=
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
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
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
[options]
install_requires =
PyYAML
numpy<2.0.0 # Due to other packages (e.g. tables) not working yet with numpy v2
pyrx
pathlib; python_version<'3.4'
docopt
importlib-metadata; python_version<'3.8'
packages = find:
[options.packages.find]
where = .
include = omv*
[options.entry_points]
console_scripts =
omv = omv.omv_util:main
[options.package_data]
* =
schemata/*
*.yaml
*.g
[flake8]
ignore = E501, E502, F403, F405