-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.04 KB
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 = "nsa-pythonik"
version = "1.15.0"
description = "Python SDK for Iconik's API"
authors = ["brant <brant@northshoreautomation.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/NorthShoreAutomation/pythonik"
homepage = "https://github.com/NorthShoreAutomation/pythonik"
keywords = ["iconik", "api", "sdk", "media"]
packages = [
{ include = "pythonik" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^2.4.2"
requests = "^2.31.0"
loguru = "^0.7.2"
requests-mock = "^1.11.0"
[tool.poetry.group.dev.dependencies]
ipython = "^8.16.1"
pytest = "^7.4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# [gitlab]
# repository = https://gitlab.example.com/api/v4/projects/${env.CI_PROJECT_ID}/packages/pypi
# username = gitlab-ci-token
# password = ${env.CI_JOB_TOKEN}