-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (43 loc) · 1.28 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "cain"
version = "1.1.1"
description = "A small yet powerful data format ✨"
license = "MIT"
authors = ["Animenosekai <animenosekai.mail@gmail.com>"]
maintainers = ["Animenosekai <animenosekai.mail@gmail.com>"]
readme = "README.md"
repository = "https://github.com/Animenosekai/cain"
documentation = "https://github.com/Animenosekai/cain/blob/main/README.md"
keywords = ["animenosekai", "cain", "data", "format"]
classifiers = [
# Status
"Development Status :: 4 - Beta",
# Environment
"Environment :: Console",
# Audience
"Intended Audience :: Developers",
# Licensing
"License :: OSI Approved :: MIT License",
# Software Requirements
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
# Topics
"Topic :: File Formats",
"Topic :: System :: Archiving",
# Code quality
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.9"
typing_extensions = "^4.7"
[tool.poetry.scripts]
cain = 'cain.__main__:entry'
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/Animenosekai/cain/issues"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
autopep8 = "^2.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"