-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
51 lines (46 loc) · 1.24 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
[metadata]
name = rustedpy-maybe
version = attr: maybe.__version__
description = A Rust-like option type for Python
long_description = file: README.md
keywords = rust, option, maybe, enum
author = francium
author_email = [email protected]
maintainer = rustedpy github org members (https://github.com/rustedpy)
url = https://github.com/rustedpy/maybe
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.12
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]
maybe = py.typed
[options.extras_require]
result = result
[flake8]
# flake8 does not (yet?) support pyproject.toml; see
# https://github.com/PyCQA/flake8/issues/234
max-line-length = 99
exclude =
.direnv/
.tox/
.venv/
venv/