-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (26 loc) · 910 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
[tool.poetry]
name = "py-smsify"
version = "0.2.1"
description = "Python library for creating GSM-7 compatible SMS messages"
authors = ["Simon Wissotsky <Wissotsky@protonmail.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/SkyDiverCool/py-smsify"
keywords = ["SMS","GSM-7","Encoding","Unicode","3GPP","23.038","03.38"]
classifiers =[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Telecommunications Industry",
"Topic :: Communications :: Telephony",
"Topic :: Text Processing :: Filters"
]
[tool.poetry.dependencies]
python = "^3.9"
anyascii = "^0.3.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"