-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (21 loc) · 781 Bytes
/
pyproject.toml
File metadata and controls
24 lines (21 loc) · 781 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
[tool.poetry]
name = "codecutter"
version = "0.2.0"
description = "Library for function preprocessing and optimization"
authors = ["Niko Järvinen <nbjarvinen@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/b10011/codecutter"
repository = "https://github.com/b10011/codecutter"
documentation = "https://github.com/b10011/codecutter/blob/master/documentation.md"
keywords = ["preprocess", "preprocessing", "preprocessor", "optimize", "optimizer"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"