-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
114 lines (98 loc) · 2.51 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[tool.poetry]
name = "ms-graph-exporter"
version = "0.1.0-rc.4"
description = "A distributed Celery application to export time-domain data periodically from Microsoft Graph API into a buffer key-value store."
authors = ["Oleksiy Kuzmenko <[email protected]>"]
readme = "README.md"
license = "MIT"
documentation = "https://msgraphexporter.readthedocs.io/en/latest/"
repository = "https://github.com/undp/MsGraphExporter"
homepage = "https://github.com/undp/MsGraphExporter"
include = [
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE.md",
"docker/*",
"docs/conf.py",
"docs/*.rst",
"docs/*.md",
"tests/*.py",
"tox.ini",
]
keywords = [
"development",
"monitoring",
"microsoft graph",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Environment :: No Input/Output (Daemon)",
"Topic :: System :: Monitoring",
]
[tool.poetry.dependencies]
python = "^3.6"
adal = "^1.2"
celery= "^4.3"
celery-redbeat = "^0.13"
gevent = "^1.4"
pyyaml = "^3.13"
redis = "^3.3"
typing = "^3.7"
# TODO:20190912:001
# pytest-dockerc requires docker-compose (>=1.17.1) which in turn requires
# requests (<2.21)
requests = "^2.20"
# docs
recommonmark = {version = "^0.5.0", optional = true}
sphinx = {version = "^2.2", optional = true}
sphinx-rtd-theme = {version = "^0.4", optional = true}
sphinx-autodoc-typehints = {version = "^1.8", optional = true}
# test
pytest = {version = "^5.1", optional = true}
pytest-benchmark = {version = "^3.2", extras = ["aspect"], optional = true}
pytest-cov = {version = "^2.7", optional = true}
pytest-dockerc = {version = "^1.0", optional = true}
pytest-instafail = {version = "^0.4", optional = true}
pytest-lazy-fixture = {version = "^0.5", optional = true}
pytest-random-order = {version = "^1.0", optional = true}
[tool.poetry.extras]
docs = [
"recommonmark",
"sphinx",
"phinx-rtd-theme",
"sphinx-autodoc-typehints",
]
test = [
"pytest",
"pytest-benchmark",
"pytest-cov",
"pytest-dockerc",
"pytest-instafail",
"pytest-lazy-fixture",
"pytest-random-order",
"pytest-variables",
]
[tool.poetry.dev-dependencies]
bump2version = "^0.5"
gitchangelog = "^3.0"
pre-commit = "^1.18"
pystache = "^0.5"
tox = "^3.14"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| \.pytest_cache
| __pycache__
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"