Skip to content

Commit

Permalink
Merge pull request #81 from ynput/enhancement/pyproject-cleanup
Browse files Browse the repository at this point in the history
Pyproject.toml cleanup
  • Loading branch information
iLLiCiTiT authored Jan 10, 2024
2 parents 9aa15f0 + c0ce3fa commit 61f268a
Showing 1 changed file with 23 additions and 17 deletions.
40 changes: 23 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ authors = ["Ynput s.r.o. <info@ynput.io>"]
license = "MIT License"
homepage = "https://ynput.io"
documentation = "https://ayon.ynput.io"
repository = "https://github.com/ynput/OpenPype"
repository = "https://github.com/ynput/ayon-launcher"
readme = "README.md"
keywords = ["Pipeline", "Avalon", "VFX", "animation", "automation", "tracking", "asset management"]
keywords = ["Pipeline", "AYON", "Avalon", "VFX", "animation", "automation", "tracking", "asset management"]
packages = [
{include = "tools"},
{include = "start.py"},
Expand All @@ -20,29 +20,35 @@ packages = [
]

[tool.poetry.scripts]
azon = 'start:boot'
ayon = "start:boot"

[tool.poetry.dependencies]
ayon-python-api = "*"
python = ">=3.9.1,<3.10"
# ayon python api
ayon-python-api = "*"
arrow = "^0.17"
Unidecode = "1.2.0"
aiohttp = "^3.7"
acre = { git = "https://github.com/pypeclub/acre.git" }
# local settings
appdirs = { git = "https://github.com/ActiveState/appdirs.git", branch = "master" }
blessed = "^1.17" # terminal formatting
urllib3 = "1.26.16"
coolname = "*"
Click = "^8"
dnspython = "^2.1.0"
arrow = "^0.17"
keyring = "^22.0.1"
# environment variables resolving
acre = { git = "https://github.com/pypeclub/acre.git" }
# terminal formatting
blessed = "^1.17" # Use only in helper scripts
enlighten = "^1.9.0"
# requirements
cryptography = "39.0.0"
dnspython = "^2.1.0"
urllib3 = "1.26.16"
semver = "^2.13.0"
QtPy = "^2.3.0"
six = "^1.15"
semver = "^2.13.0" # for version resolution
pywin32 = { version = "301", markers = "sys_platform == 'win32'" }
python3-xlib = { version="*", markers = "sys_platform == 'linux'"}
enlighten = "^1.9.0"
Unidecode = "1.2.0"
cryptography = "39.0.0"
# move to core addon
Click = "^8"
six = "^1.15"

[tool.poetry.dev-dependencies]
flake8 = "^6.0"
Expand All @@ -67,8 +73,8 @@ toml = "^0.10.2" # for parsing pyproject.toml
pre-commit = "*"

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ynput/OpenPype/issues"
"Discussions" = "https://github.com/ynput/OpenPype/discussions"
"Bug Tracker" = "https://github.com/ynput/ayon-launcher/issues"
"Discussions" = "https://github.com/ynput/ayon-launcher/discussions"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 61f268a

Please sign in to comment.