Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pyproject.toml cleanup #81

Merged
merged 5 commits into from
Jan 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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