-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
37 lines (31 loc) · 819 Bytes
/
setup.cfg
File metadata and controls
37 lines (31 loc) · 819 Bytes
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
[metadata]
name = softfloatpy
version = attr: softfloatpy._version.__version__
url = https://github.com/arithy/softfloatpy
author = Arihiro Yoshida
author_email = software@arithy.org
license = MIT License
license_files = LICENSE
description = A Python binding of Berkeley SoftFloat
long_description = file: README.md
long_description_content_type = text/markdown
[options]
python_requires = >=3.11, <4
setup_requires = cython
package_dir = =python/src
packages = find:
[options.packages.find]
where = python/src
[options.package_data]
* = *.pyi, py.typed
[options.extras_require]
dev = pytest; mypy; flake8
doc = sphinx; sphinx-rtd-theme; myst-parser
[flake8]
ignore = E501, E741, W504
doctests = true
[mypy]
exclude = python/docs/
enable_error_code = ignore-without-code
warn_unused_configs = true
strict = true