-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 837 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (24 loc) · 837 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
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scala-option"
version = "1.0.2"
dependencies = []
requires-python = ">=3.12"
authors = [{ name = "Alex Suopanki", email = "alex.suopanki@gmail.com" }]
description = "Scala like Option type in Python"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT" }
keywords = ["option", "optional", "maybe", "functional"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov"]
[project.urls]
Repository = "https://github.com/Suopunki/scala-option"