lookyloo/client/pyproject.toml

40 lines
1019 B
TOML
Raw Normal View History

2020-01-21 17:39:18 +01:00
[tool.poetry]
name = "pylookyloo"
2020-03-17 15:13:52 +01:00
version = "0.7"
2020-01-21 17:39:18 +01:00
description = "Python client for Lookyloo"
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
license = "AGPL-3.0-or-later"
repository = "https://github.com/CIRCL/lookyloo/client"
2020-03-16 17:51:40 +01:00
readme = "README.md"
2020-01-21 17:39:18 +01:00
classifiers = [
2020-03-16 17:18:06 +01:00
'Development Status :: 4 - Beta',
2020-01-21 17:39:18 +01:00
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
2020-03-16 17:18:06 +01:00
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
2020-01-21 17:39:18 +01:00
'Topic :: Security',
'Topic :: Internet',
]
2020-03-16 17:51:40 +01:00
include = ['README.md']
2020-01-21 17:39:18 +01:00
[tool.poetry.scripts]
2020-03-16 17:18:06 +01:00
lookyloo = 'pylookyloo:main'
2020-01-21 17:39:18 +01:00
[tool.poetry.dependencies]
2020-01-21 17:50:24 +01:00
python = "^3.6"
2020-01-21 17:39:18 +01:00
requests = "^2.22.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"