-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
48 lines (45 loc) · 1.14 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
[tool.poetry]
name = "tokopedia"
version = "0.4.2"
description = "Python SDK for Tokopedia Seller API "
authors = ["hexatester <hexatester@protonmail.com>"]
readme = "README.md"
keywords = [
"tokopedia",
"openapi",
"api-client",
"tokopedia-api",
"seller-api",
]
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Office/Business",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.25.1"
attrs = "^20.3.0"
cattrs = "^1.3.0"
python-dateutil = "^2.8.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "4.0.1"
mypy = "0.931"
black = "22.1.0"
pylint = "2.12.2"
pre-commit = "^2.11.1"
pytest-cov = "^2.11.1"
python-dotenv = "^0.15.0"
types-python-dateutil = "^2.8.9"
types-attrs = "^19.1.0"
types-requests = "^2.27.11"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"