-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.1 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
[tool.poetry]
name = "opencf-core"
packages = [
{include = "opencf_core"}
]
version = "0.3.4"
description = "A robust framework for handling file conversion tasks in Python"
authors = ["Hermann Agossou <agossouhermann7@gmail.com>"]
readme = "README.md"
maintainers = [
"Hermann Agossou <agossouhermann7@gmail.com>"
]
license = "MIT"
homepage = "https://github.com/Hermann-web/opencf-core"
repository = "https://github.com/Hermann-web/opencf-core"
documentation = "https://opencf-core.readthedocs.io"
keywords = ["file conversion", "data processing", "file formats"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.7"
python-magic = "^0.4.27"
aenum = "^3.1.15"
[tool.poetry.group.dev.dependencies]
isort = "^5.10.2"
black = "^23.0.0"
flake8 = "^5.0.0"
mypy = "^1.4.0"
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"