ancientlinesoftheworld 1.0.0__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.
- ancientlinesoftheworld-1.0.0/PKG-INFO +72 -0
- ancientlinesoftheworld-1.0.0/README.md +30 -0
- ancientlinesoftheworld-1.0.0/ancientlinesoftheworld.egg-info/PKG-INFO +72 -0
- ancientlinesoftheworld-1.0.0/ancientlinesoftheworld.egg-info/SOURCES.txt +8 -0
- ancientlinesoftheworld-1.0.0/ancientlinesoftheworld.egg-info/dependency_links.txt +1 -0
- ancientlinesoftheworld-1.0.0/ancientlinesoftheworld.egg-info/entry_points.txt +2 -0
- ancientlinesoftheworld-1.0.0/ancientlinesoftheworld.egg-info/requires.txt +6 -0
- ancientlinesoftheworld-1.0.0/ancientlinesoftheworld.egg-info/top_level.txt +1 -0
- ancientlinesoftheworld-1.0.0/setup.cfg +4 -0
- ancientlinesoftheworld-1.0.0/setup.py +57 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ancientlinesoftheworld
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Comprehensive ancient scripts conversion toolkit
|
|
5
|
+
Home-page: https://github.com/amirhossinpython/ancient-scripts
|
|
6
|
+
Author: Amir Hossein Khazaei
|
|
7
|
+
Author-email: amirhossinpython03@gmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Bug Reports, https://github.com/amirhossinpython/ancient-scripts/issues
|
|
10
|
+
Project-URL: Source, https://github.com/amirhossinpython/ancient-scripts
|
|
11
|
+
Keywords: ancient scripts cuneiform hieroglyph pahlavi linguistics
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Education
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Topic :: Text Processing :: Linguistic
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Requires-Dist: deep-translator>=1.11.0
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
27
|
+
Requires-Dist: twine>=4.0; extra == "dev"
|
|
28
|
+
Requires-Dist: wheel>=0.38.0; extra == "dev"
|
|
29
|
+
Dynamic: author
|
|
30
|
+
Dynamic: author-email
|
|
31
|
+
Dynamic: classifier
|
|
32
|
+
Dynamic: description
|
|
33
|
+
Dynamic: description-content-type
|
|
34
|
+
Dynamic: home-page
|
|
35
|
+
Dynamic: keywords
|
|
36
|
+
Dynamic: license
|
|
37
|
+
Dynamic: project-url
|
|
38
|
+
Dynamic: provides-extra
|
|
39
|
+
Dynamic: requires-dist
|
|
40
|
+
Dynamic: requires-python
|
|
41
|
+
Dynamic: summary
|
|
42
|
+
|
|
43
|
+
# Ancient Scripts Converter
|
|
44
|
+
|
|
45
|
+
📜 A Python package for converting text to ancient writing systems
|
|
46
|
+
|
|
47
|
+
## Installation
|
|
48
|
+
```bash
|
|
49
|
+
pip install ancienttexts
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Usage
|
|
53
|
+
```python
|
|
54
|
+
from ancienttexts import AncientScripts
|
|
55
|
+
|
|
56
|
+
converter = AncientScripts()
|
|
57
|
+
|
|
58
|
+
# Convert to Cuneiform
|
|
59
|
+
cuneiform_text = converter.cuneiform("سلام")
|
|
60
|
+
|
|
61
|
+
# Convert to Hieroglyph
|
|
62
|
+
hieroglyph_text = converter.hieroglyph("خدا")
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Supported Scripts
|
|
66
|
+
- Cuneiform
|
|
67
|
+
- Egyptian Hieroglyphs
|
|
68
|
+
- Pahlavi script
|
|
69
|
+
- Manichaean script
|
|
70
|
+
- Linear B
|
|
71
|
+
- And more...
|
|
72
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Ancient Scripts Converter
|
|
2
|
+
|
|
3
|
+
📜 A Python package for converting text to ancient writing systems
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
```bash
|
|
7
|
+
pip install ancienttexts
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
```python
|
|
12
|
+
from ancienttexts import AncientScripts
|
|
13
|
+
|
|
14
|
+
converter = AncientScripts()
|
|
15
|
+
|
|
16
|
+
# Convert to Cuneiform
|
|
17
|
+
cuneiform_text = converter.cuneiform("سلام")
|
|
18
|
+
|
|
19
|
+
# Convert to Hieroglyph
|
|
20
|
+
hieroglyph_text = converter.hieroglyph("خدا")
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Supported Scripts
|
|
24
|
+
- Cuneiform
|
|
25
|
+
- Egyptian Hieroglyphs
|
|
26
|
+
- Pahlavi script
|
|
27
|
+
- Manichaean script
|
|
28
|
+
- Linear B
|
|
29
|
+
- And more...
|
|
30
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ancientlinesoftheworld
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Comprehensive ancient scripts conversion toolkit
|
|
5
|
+
Home-page: https://github.com/amirhossinpython/ancient-scripts
|
|
6
|
+
Author: Amir Hossein Khazaei
|
|
7
|
+
Author-email: amirhossinpython03@gmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Bug Reports, https://github.com/amirhossinpython/ancient-scripts/issues
|
|
10
|
+
Project-URL: Source, https://github.com/amirhossinpython/ancient-scripts
|
|
11
|
+
Keywords: ancient scripts cuneiform hieroglyph pahlavi linguistics
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Education
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Topic :: Text Processing :: Linguistic
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Requires-Dist: deep-translator>=1.11.0
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
27
|
+
Requires-Dist: twine>=4.0; extra == "dev"
|
|
28
|
+
Requires-Dist: wheel>=0.38.0; extra == "dev"
|
|
29
|
+
Dynamic: author
|
|
30
|
+
Dynamic: author-email
|
|
31
|
+
Dynamic: classifier
|
|
32
|
+
Dynamic: description
|
|
33
|
+
Dynamic: description-content-type
|
|
34
|
+
Dynamic: home-page
|
|
35
|
+
Dynamic: keywords
|
|
36
|
+
Dynamic: license
|
|
37
|
+
Dynamic: project-url
|
|
38
|
+
Dynamic: provides-extra
|
|
39
|
+
Dynamic: requires-dist
|
|
40
|
+
Dynamic: requires-python
|
|
41
|
+
Dynamic: summary
|
|
42
|
+
|
|
43
|
+
# Ancient Scripts Converter
|
|
44
|
+
|
|
45
|
+
📜 A Python package for converting text to ancient writing systems
|
|
46
|
+
|
|
47
|
+
## Installation
|
|
48
|
+
```bash
|
|
49
|
+
pip install ancienttexts
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Usage
|
|
53
|
+
```python
|
|
54
|
+
from ancienttexts import AncientScripts
|
|
55
|
+
|
|
56
|
+
converter = AncientScripts()
|
|
57
|
+
|
|
58
|
+
# Convert to Cuneiform
|
|
59
|
+
cuneiform_text = converter.cuneiform("سلام")
|
|
60
|
+
|
|
61
|
+
# Convert to Hieroglyph
|
|
62
|
+
hieroglyph_text = converter.hieroglyph("خدا")
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Supported Scripts
|
|
66
|
+
- Cuneiform
|
|
67
|
+
- Egyptian Hieroglyphs
|
|
68
|
+
- Pahlavi script
|
|
69
|
+
- Manichaean script
|
|
70
|
+
- Linear B
|
|
71
|
+
- And more...
|
|
72
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
setup.py
|
|
3
|
+
ancientlinesoftheworld.egg-info/PKG-INFO
|
|
4
|
+
ancientlinesoftheworld.egg-info/SOURCES.txt
|
|
5
|
+
ancientlinesoftheworld.egg-info/dependency_links.txt
|
|
6
|
+
ancientlinesoftheworld.egg-info/entry_points.txt
|
|
7
|
+
ancientlinesoftheworld.egg-info/requires.txt
|
|
8
|
+
ancientlinesoftheworld.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
|
|
4
|
+
# خواندن خودکار README.md
|
|
5
|
+
root = Path(__file__).parent
|
|
6
|
+
long_description = (root / "README.md").read_text(encoding="utf-8")
|
|
7
|
+
|
|
8
|
+
setup(
|
|
9
|
+
name="ancientlinesoftheworld",
|
|
10
|
+
version="1.0.0",
|
|
11
|
+
description="Comprehensive ancient scripts conversion toolkit",
|
|
12
|
+
long_description=long_description,
|
|
13
|
+
long_description_content_type="text/markdown",
|
|
14
|
+
url="https://github.com/amirhossinpython/ancient-scripts",
|
|
15
|
+
author="Amir Hossein Khazaei",
|
|
16
|
+
author_email="amirhossinpython03@gmail.com",
|
|
17
|
+
license="MIT",
|
|
18
|
+
classifiers=[
|
|
19
|
+
"Development Status :: 4 - Beta",
|
|
20
|
+
"Intended Audience :: Education",
|
|
21
|
+
"Intended Audience :: Science/Research",
|
|
22
|
+
"License :: OSI Approved :: MIT License",
|
|
23
|
+
"Programming Language :: Python :: 3.8",
|
|
24
|
+
"Programming Language :: Python :: 3.9",
|
|
25
|
+
"Programming Language :: Python :: 3.10",
|
|
26
|
+
"Programming Language :: Python :: 3.11",
|
|
27
|
+
"Topic :: Text Processing :: Linguistic",
|
|
28
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
29
|
+
],
|
|
30
|
+
keywords="ancient scripts cuneiform hieroglyph pahlavi linguistics",
|
|
31
|
+
packages=find_packages(include=["ancient_scripts", "ancient_scripts.*"]),
|
|
32
|
+
package_dir={"": "."},
|
|
33
|
+
package_data={
|
|
34
|
+
"ancient_scripts": ["data/*.json"],
|
|
35
|
+
},
|
|
36
|
+
python_requires=">=3.8",
|
|
37
|
+
install_requires=[
|
|
38
|
+
"deep-translator>=1.11.0",
|
|
39
|
+
|
|
40
|
+
],
|
|
41
|
+
extras_require={
|
|
42
|
+
"dev": [
|
|
43
|
+
"pytest>=7.0",
|
|
44
|
+
"twine>=4.0",
|
|
45
|
+
"wheel>=0.38.0"
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
entry_points={
|
|
49
|
+
"console_scripts": [
|
|
50
|
+
"ancient-scripts=ancient_scripts.cli:main",
|
|
51
|
+
],
|
|
52
|
+
},
|
|
53
|
+
project_urls={
|
|
54
|
+
"Bug Reports": "https://github.com/amirhossinpython/ancient-scripts/issues",
|
|
55
|
+
"Source": "https://github.com/amirhossinpython/ancient-scripts",
|
|
56
|
+
},
|
|
57
|
+
)
|