forked from rustedpy/result
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (42 loc) · 1.13 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
[metadata]
name = result
version = attr: result.__version__
description = A Rust-like result type for Python
long_description = file: README.rst
keywords = rust, result, enum
author = Danilo Bargen
author_email = [email protected]
maintainer = rustedpy github org members (https://github.com/rustedpy)
url = https://github.com/rustedpy/result
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
[options]
include_package_data = True
install_requires =
typing_extensions;python_version<'3.10'
package_dir =
=src
packages = find:
python_requires = >=3.8
zip_safe = True
[options.packages.find]
where = src
[options.package_data]
result = py.typed
[flake8]
# flake8 does not (yet?) support pyproject.toml; see
# https://github.com/PyCQA/flake8/issues/234
max-line-length = 99
exclude =
.direnv/
.tox/
venv/