-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.22 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 = "abilian-crm-core"
version = "0.1.28"
homepage = "https://github.com/abilian/abilian-crm-core"
description = "Core framework for CRM applications"
authors = ["Stefane Fermigier", "Abilian SAS"]
license = "LGPL"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Flask"
]
packages = [{ include = "abilian", from = "src" }]
[tool.poetry.dependencies]
python = ">3.7.1,<4"
abilian-core = "<0.11"
sqlalchemy = "~1.3"
more-itertools = "<6"
numpy = "*"
openpyxl = ">=2.3.3"
pandas = "*"
phonenumbers = ">=7.1.0"
werkzeug = "<1"
[tool.poetry.dev-dependencies]
pre-commit = "*"
mock = ">=1.0.1"
pytest = ">=2.4.0"
pytest-cov = "*"
pytest-xdist = "*"
flake8 = "*"
flake8-bugbear = "*"
flake8-mypy-fork = "*"
pylint = "*"
mypy = "*"
isort = "*"
requests = "*"
restructuredtext-lint = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
docformatter = "*"
black = "^20.8b1"
pyupgrade = "^2.13.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"