-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.cfg
64 lines (57 loc) · 1.31 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
[metadata]
name = budoux
version = attr: budoux.__init__.__version__
description = BudouX is the successor of Budou
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache-2.0
author = Shuhei Iitsuka
author_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License
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
[options]
python_requires= >= 3.8
packages = find:
include_package_data = True
test_suite = tests
install_requires =
importlib-resources
[options.extras_require]
dev =
build
flake8
isort
mypy==1.13.0
pytest
regex
toml
twine
types-regex
types-setuptools
yapf
jaxcpu =
jax==0.4.37
[options.entry_points]
console_scripts =
budoux = budoux.main:main
[yapf]
based_on_style = yapf
[flake8]
# E124: closing bracket does not match visual indentation
# E126: over-indentation
# E501: line too long
# BLK100: black formattable
ignore = E124,E126,E501,BLK100
indent-size = 2
[mypy]
python_version = 3.10
pretty = True
strict = True
allow_untyped_calls = True