-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
38 lines (30 loc) · 959 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
[tool.poetry]
name = "wxconv"
version = "1.0.0.0"
description = "Python library for UTF to WX conversion and vice-versa for Indian languages."
authors = ["irshadbhat <[email protected]>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/irshadbhat/indic-wx-converter"
keywords = ["nlp", "transliteration", "romanization", 'wx']
classifier = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved",
"License :: OSI Approved :: MIT",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"
]
[tool.poetry.dependencies]
python = "*"
six = "^1.12"
pbr = "^2.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
wxconv = "wxconv:main"