-
Notifications
You must be signed in to change notification settings - Fork 59
/
pyproject.toml
91 lines (82 loc) · 2.57 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "melusine"
authors = [
{name = "Tiphaine Fabre"},
{name = "Hugo Perrier", email = "[email protected]"},
{name = "Sacha Samama"},
{name = "Antoine Simoulin"},
]
description = "Melusine is a high-level library for emails processing"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["nlp", "email", "courriel", "text", "data-science", "machine-learning", "natural-language-processing"]
license = {text = "Apache Software License 2.0"}
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Topic :: Communications :: Email",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
]
dependencies = [
"arrow",
"pandas>2",
"scikit-learn>=1",
"tqdm>=4.34",
"omegaconf>=2.0",
]
dynamic = ["version"]
[project.optional-dependencies] # Optional
dev = ["tox", "pre-commit", "black", "flake8", "isort", "mypy", "pytest", "coverage", "build", "ruff"]
test = ["pytest", "coverage", "pytest-cov", "google-auth-oauthlib", "google-api-python-client"]
transformers = ["transformers>4"]
connectors = ["exchangelib", "google-auth-oauthlib", "google-api-python-client"]
docs = ["mkdocs", "markdown", "mkdocs-material", "mdx-include"]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
version = {attr = "melusine.VERSION"}
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = false
hide_error_codes = false
no_site_packages = true
[tool.ruff]
line-length = 120
exclude = [
"tests",
"docs"
]
[tool.coverage.run]
omit = [
# omit init files in docs_src
"docs/__init__.py",
"docs/docs_src/*/__init__.py",
# omit test files
"tests/*",
# omit anything in a .local directory anywhere
"*/.local/*",
# omit single files
"melusine/connectors/__init__.py",
"melusine/connectors/exchange.py",
]