Initial commit
This commit is contained in:
parent
f4cc49896a
commit
baf660cdaf
8 changed files with 229 additions and 620 deletions
|
|
@ -1,30 +1,34 @@
|
|||
[tool.poetry]
|
||||
name = "transip_client"
|
||||
version = "0.4.0"
|
||||
description = "Listens for changes about the current public IP and acts upon it."
|
||||
authors = ["sonny <sonnyba871@gmail.com>"]
|
||||
license = "GPL-3.0"
|
||||
[project]
|
||||
name = 'transip_client'
|
||||
version = '0.4.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'
|
||||
]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.7"
|
||||
click = "^8.0.1"
|
||||
python-dotenv = "^0.15.0"
|
||||
requests = "^2.25.1"
|
||||
sentry_sdk = {version = "^0.19.5", optional = true}
|
||||
cryptography = "^3.4.7"
|
||||
[project.optional-dependencies]
|
||||
development = [
|
||||
'black>=20.8b1',
|
||||
'isort>=5.6.4',
|
||||
'autoflake>=1.4',
|
||||
'pip-tools>=6.13.0',
|
||||
]
|
||||
|
||||
[tool.poetry.extras]
|
||||
sentry = ["sentry_sdk"]
|
||||
ci = ['coverage>=5.3.1']
|
||||
sentry-enabled = ['sentry_sdk>=0.19.5']
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
black = "^20.8b1"
|
||||
isort = "^5.6.4"
|
||||
autoflake = "^1.4"
|
||||
coverage = "^5.3.1"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
listen = "transip_client.cli:run"
|
||||
[project.scripts]
|
||||
transip-listen = 'transip_client.cli:run'
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry>=0.12"]
|
||||
build-backend = "poetry.masonry.api"
|
||||
requires = ['setuptools']
|
||||
build-backend = 'setuptools.build_meta'
|
||||
|
||||
[tool.setuptools.packages]
|
||||
find = {include = ['transip_client']}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue