-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (37 loc) · 899 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "instance-builder"
version = "0.1.9"
description = "Instance builder library for Python inspired by Lombok"
authors = ["Shuntaro Shimizu <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/shimech/instance-builder"
repository = "https://github.com/shimech/instance-builder"
keywords=[
"Instance Builder",
"Builder",
"Lombok"
]
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages=[
{ include = "instance_builder" }
]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
autopep8 = "^1.5.7"
twine = "^3.4.1"
wheel = "^0.36.2"
keyring = "^23.0.1"
pytest = "^6.2.4"
setuptools = "^57.0.0"
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"