-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.23 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
[tool.poetry]
name = "konduto-sdk"
version = "1.0.0"
description = "SDK to let the process easier to integrate your application with konduto rest API"
authors = ["Alefh Sousa <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["konduto", "sdk", "api", "konduto SDK"]
homepage = "https://github.com/alefhsousa/konduto-sdk"
repository = "https://github.com/alefhsousa/konduto-sdk"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
packages = [
{include = "konduto"}
]
[tool.poetry.dependencies]
python = "^3.6"
dacite = "^1.3.0"
requests = "^2.16.0"
[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
pycodestyle = "^2.5.0"
safety = "^1.8.7"
pytest-cov = "^2.8.1"
factory-boy = "^2.12.0"
requests-mock = "^1.7.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"