generated from fastai/nbdev_template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
67 lines (63 loc) · 1.76 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
57
58
59
60
61
62
63
64
65
66
67
[metadata]
name = neos
description = UpUpstream optimization of a neural net summary statistic with respect to downstream inference goals.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/gradhep/neos
author = Nathan Simpson
author_email = [email protected]
maintainer = Nathan Simpson
maintainer_email = [email protected]
license = BSD-3-Clause
license_file = LICENSE
platforms =
Any
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
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 :: 3.10
Topic :: Scientific/Engineering
project_urls =
Documentation = https://neos.readthedocs.io/
Bug Tracker = https://github.com/gradhep/neos/issues
Discussions = https://github.com/gradhep/neos/discussions
Changelog = https://github.com/gradhep/neos/releases
[options]
packages = find:
install_requires =
celluloid
matplotlib
relaxed>=0.2.0
sklearn
typing-extensions>=3.7;python_version<'3.8'
python_requires = >=3.6
include_package_data = True
package_dir =
=src
[options.packages.find]
where = src
[options.extras_require]
dev =
pytest>=6
docs =
Sphinx~=3.0
myst-parser>=0.13
sphinx-book-theme>=0.1.0
sphinx-copybutton
test =
pytest>=6
[flake8]
ignore = E203, E231, E501, E722, W503, B950
select = C,E,F,W,T,B,B9,I
per-file-ignores =
tests/*: T