paraencoder 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: paraencoder
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Burmese text detection and conversion toolkit for Zawgyi and Unicode
5
5
  Project-URL: Homepage, https://github.com/Laitei40/ParaEncoder
6
6
  Project-URL: Repository, https://github.com/Laitei40/ParaEncoder
@@ -34,7 +34,7 @@ Para is a small, boring, and transparent toolkit for working with Burmese text.
34
34
 
35
35
  ## Installation
36
36
  ```bash
37
- pip install para
37
+ pip install paraencoder
38
38
  ```
39
39
 
40
40
  ## Usage
@@ -13,7 +13,7 @@ Para is a small, boring, and transparent toolkit for working with Burmese text.
13
13
 
14
14
  ## Installation
15
15
  ```bash
16
- pip install para
16
+ pip install paraencoder
17
17
  ```
18
18
 
19
19
  ## Usage
@@ -0,0 +1,41 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "paraencoder"
7
+ version = "0.1.1"
8
+ description = "Burmese text detection and conversion toolkit for Zawgyi and Unicode"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ authors = [
12
+ { name = "Para Maintainers" }
13
+ ]
14
+ license = { text = "MIT" }
15
+ keywords = ["myanmar", "burmese", "zawgyi", "unicode", "text", "conversion"]
16
+ classifiers = [
17
+ "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3 :: Only",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Operating System :: OS Independent",
21
+ "Topic :: Text Processing :: Linguistic",
22
+ ]
23
+ dependencies = []
24
+
25
+ [project.urls]
26
+ Homepage = "https://github.com/Laitei40/ParaEncoder"
27
+ Repository = "https://github.com/Laitei40/ParaEncoder"
28
+ Issues = "https://github.com/Laitei40/ParaEncoder/issues"
29
+
30
+ [project.optional-dependencies]
31
+ test = ["pytest>=7"]
32
+
33
+ [project.scripts]
34
+ para = "para.cli:main"
35
+
36
+ [tool.hatch.build.targets.wheel]
37
+ packages = ["para"]
38
+
39
+ [tool.pytest.ini_options]
40
+ testpaths = ["tests"]
41
+ addopts = "-q"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes