transip-client/pyproject.toml
sonny 400792922b
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/tests Pipeline was successful
Replace pip-tools with uv
2025-01-04 15:15:00 +01:00

33 lines
743 B
TOML

[project]
name = 'transip_client'
version = '0.5.0'
description = 'Listens for changes about the current public IP and acts upon it.'
authors = [{name = 'Sonny', email= 'sonnyba871@gmail.com'}]
license = {text = 'GPL-3.0'}
requires-python = '>=3.11'
dependencies = [
'click>=8.0.1',
'python-dotenv>=0.15.0',
'requests>=2.25.1',
'cryptography>=3.4.7'
]
[project.optional-dependencies]
development = [
'black>=20.8b1',
'isort>=5.6.4',
'autoflake>=1.4',
]
ci = ['coverage>=5.3.1']
sentry-enabled = ['sentry_sdk>=0.19.5']
[tool.setuptools.packages]
find = {include = ['transip_client']}
[project.scripts]
transip-listen = 'transip_client.cli:run'
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'