-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 938 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (34 loc) · 938 Bytes
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
[tool.poetry]
name = "cepan"
version = "0.2.0"
description = "Retrieves data from aws cost explore as a pandas dataframe."
authors = ["kanga333 <e411z7t40w@gmail.com>"]
license = "MIT"
readme = 'README.md'
repository = "https://github.com/kanga333/cepan"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3.8',
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.2.3"
boto3 = "^1.17.19"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.8.4"
isort = "^5.7.0"
mypy = "^0.812"
pytest = "^6.2.2"
pytest-mock = "^3.5.1"
pytest-cov = "^2.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"