-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (30 loc) · 911 Bytes
/
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
37
38
39
[tool.poetry]
name = "burner"
description = "Script to interact with SimSMS's website."
version = "0.8.1"
authors = ["Aidan <ramadan8@riseup.net>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/ramadan8/Burner"
packages = [{include = "burner"}]
keywords = ["phone", "burner", "sms", "simsms"]
classifiers = [
"Topic :: Communications :: Internet Phone",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[tool.poetry.dependencies]
python = "^3.8"
peewee = "^3.15.3"
requests = "^2.28.1"
click = "^8.1.3"
beautifulsoup4 = "^4.11.1"
phonenumbers = "^8.12.57"
[tool.poetry.scripts]
burner = "burner.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"