-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.cfg
59 lines (53 loc) · 1.04 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
[metadata]
name = pywsl
version = 0.1.4
url = https://github.com/t-sakai-kure/pywsl
author = Tomoya Sakai
author_email = t.sakai.kure@gmail.com
license = MIT
license_file = LICENSE
description = Code for weakly supervised learning
long_description = file: README.md
long_description_content_type = text/markdown
install_requires =
numpy
scipy
sklearn>=0.20
chainer>=3.
classifiers =
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.4
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
setup_requires =
flake8
pytest-runner
tests_require =
pytest
pytest-cov
[options.packages.find]
exclude =
tests
[flake8]
filename = pywsl/*/*.py
max-line-length = 160
max-complexity = 10
exclude =
tests
[aliases]
test = pytest
[tool:pytest]
addopts =
--verbose
--cov
--cov-report=html:htmlcov/
[coverage:run]
branch = True
omit =
.eggs/*
*/__init__.py
tests/*