folktexts 0.0__py3-none-any.whl

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.
folktexts/__init__.py ADDED
@@ -0,0 +1 @@
1
+ from ._version import __version__, __version_info__
folktexts/_version.py ADDED
@@ -0,0 +1,5 @@
1
+ """Module to expose version information."""
2
+ from importlib import metadata
3
+
4
+ __version__ = metadata.version("folktexts")
5
+ __version_info__ = tuple(__version__.split("."))
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 André Cruz
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,74 @@
1
+ Metadata-Version: 2.1
2
+ Name: folktexts
3
+ Version: 0.0
4
+ Summary: A multi-lingual, multi-country Q&A dataset of social facts.
5
+ Author: AndreFCruz
6
+ Project-URL: Homepage, https://github.com/AndreFCruz/folktexts
7
+ Project-URL: Documentation, https://andrefcruz.github.io/folktexts/
8
+ Project-URL: Repository, https://github.com/AndreFCruz/folktexts
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
13
+ Classifier: Natural Language :: English
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Requires-Python: >=3.8
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: numpy
24
+ Requires-Dist: pandas
25
+ Requires-Dist: tqdm
26
+ Provides-Extra: docs
27
+ Requires-Dist: sphinx ; extra == 'docs'
28
+ Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
29
+ Requires-Dist: sphinx-autopackagesummary ; extra == 'docs'
30
+ Requires-Dist: myst-parser ; extra == 'docs'
31
+ Requires-Dist: sphinx-copybutton ; extra == 'docs'
32
+ Requires-Dist: sphinxcontrib-bibtex ; extra == 'docs'
33
+ Requires-Dist: sphinxemoji ; extra == 'docs'
34
+ Provides-Extra: tests
35
+ Requires-Dist: pytest ; extra == 'tests'
36
+ Requires-Dist: coverage ; extra == 'tests'
37
+
38
+ # :book: folktexts <!-- omit in toc -->
39
+ > :construction: Package under construction
40
+
41
+ ![Tests status](https://github.com/AndreFCruz/folktexts/actions/workflows/python-package.yml/badge.svg)
42
+ ![PyPI status](https://github.com/AndreFCruz/folktexts/actions/workflows/python-publish.yml/badge.svg)
43
+ ![Documentation status](https://github.com/AndreFCruz/folktexts/actions/workflows/python-docs.yml/badge.svg)
44
+ ![PyPI version](https://badgen.net/pypi/v/folktexts)
45
+ ![OSI license](https://badgen.net/pypi/license/folktexts)
46
+ ![Python compatibility](https://badgen.net/pypi/python/folktexts)
47
+
48
+ Repo to host the `folktexts` project.
49
+
50
+ Package documentation can be found [here](https://andrefcruz.github.io/folktexts/)!
51
+
52
+ **Table of contents:**
53
+ - [Installing](#installing)
54
+ - [Usage](#usage)
55
+ - [License and terms of use](#license-and-terms-of-use)
56
+
57
+
58
+ ## Installing
59
+
60
+ Install package from [PyPI](https://pypi.org/project/folktexts/):
61
+
62
+ ```
63
+ pip install folktexts
64
+ ```
65
+
66
+
67
+ ## Usage
68
+
69
+ *TODO*
70
+
71
+
72
+ ## License and terms of use
73
+
74
+ *TODO* (data is licensed under CC BY-NC-SA 4.0; `folktexts` code can be licensed under MIT)
@@ -0,0 +1,7 @@
1
+ folktexts/__init__.py,sha256=AqW5GkdSgV9CzMkMgtKvE9-AUExpbk3JGCi74ohDoqw,52
2
+ folktexts/_version.py,sha256=U7QlOl0GJ1jVxEwhYvdR6uY-pZjUGsS3LGaugyHbvx8,169
3
+ folktexts-0.0.dist-info/LICENSE,sha256=Qq7uL_8RRSMqUP1LyaVx4oNzg_zNU5LuGpNgZoZpda0,1068
4
+ folktexts-0.0.dist-info/METADATA,sha256=nHSuj9PHt4xPjGih86xMpW4UWn6IOoSAZJL2Ae-0zM8,2601
5
+ folktexts-0.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
6
+ folktexts-0.0.dist-info/top_level.txt,sha256=pFFGqTzYpFYqQQjdkN_9H1_Jpl8QrrOqWUh2P5DoY90,10
7
+ folktexts-0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.42.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ folktexts