-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (44 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
[tool.poetry]
name = "optic-sdk"
version = "0.1.0"
description = "Python SDK for Optic"
authors = ["Mukesh <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/silentninja/optic-python"
repository = "https://github.com/silentninja/optic-python/sdk"
keywords = ["swagger", "optic", "sdk", "api"]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 3.7',
'Framework :: Django :: 3.8',
'Framework :: Django :: 3.9',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
'Topic :: Internet :: WWW/HTTP',
'License :: OSI Approved :: MIT License'
]
include = [
"LICENSE",
]
packages = [
{ include = "optic" },
]
[tool.poetry.dependencies]
python = "^3.7 || ^3.8 || ^3.9"
requests = "^2.26.0"
[tool.poetry.dev-dependencies]
tox = "^3.23.1"
codecov = "^2.1.11"
flake8 = "^3.9.2"
pre-commit = "^2.13.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3