-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.03 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "easydrop"
version = "0.0.1a2"
description = "Tool that makes using AirDrop on Linux *easy*"
license = "Apache-2.0"
authors = ["TheLastGimbus <mateusz.soszynski@tuta.io>"]
maintainers = ["TheLastGimbus <mateusz.soszynski@tuta.io>"]
readme = "README.md"
repository = "https://github.com/TheLastGimbus/easydrop"
keywords = ["airdrop", "sharing", "nearby", "wifi", "awdl"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python :: 3",
"Topic :: Communications :: File Sharing",
]
include = ["easydrop/bins/*"]
[tool.poetry.dependencies]
python = "^3.6"
opendrop = "^0.13.0"
click = "^8.0.0"
loguru = "^0.5.3"
ifaddr = "^0.1.7"
[tool.poetry.dev-dependencies]
[tools.poetry.scripts]
easydrop = 'easydrop.__main__:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"