stata-cli 0.2.0__tar.gz → 0.2.2__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.
- {stata_cli-0.2.0 → stata_cli-0.2.2}/PKG-INFO +4 -4
- {stata_cli-0.2.0 → stata_cli-0.2.2}/README.md +2 -2
- {stata_cli-0.2.0 → stata_cli-0.2.2}/pyproject.toml +2 -2
- stata_cli-0.2.2/src/stata_cli/__init__.py +1 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli.egg-info/PKG-INFO +4 -4
- stata_cli-0.2.0/src/stata_cli/__init__.py +0 -1
- {stata_cli-0.2.0 → stata_cli-0.2.2}/setup.cfg +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli/__main__.py +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli/daemon.py +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli/engine.py +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli/graph_artifacts.py +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli/main.py +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli/output_filter.py +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli/smcl_parser.py +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli/utils.py +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli.egg-info/SOURCES.txt +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli.egg-info/dependency_links.txt +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli.egg-info/entry_points.txt +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli.egg-info/requires.txt +0 -0
- {stata_cli-0.2.0 → stata_cli-0.2.2}/src/stata_cli.egg-info/top_level.txt +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: stata-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Command-line interface for running Stata commands via PyStata
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: stata,cli,statistics,data-science
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
Requires-Dist: click>=8.0
|
|
10
10
|
Provides-Extra: data
|
|
@@ -14,7 +14,7 @@ Requires-Dist: pandas; extra == "data"
|
|
|
14
14
|
# stata-cli
|
|
15
15
|
|
|
16
16
|
[](https://opensource.org/licenses/MIT)
|
|
17
|
-
[](https://www.python.org/)
|
|
18
18
|
[](https://www.npmjs.com/package/stata-cli)
|
|
19
19
|
|
|
20
20
|
[中文版](README.zh.md) | [English](README.md)
|
|
@@ -50,7 +50,7 @@ A command-line interface for [Stata](https://www.stata.com/) via PyStata — bui
|
|
|
50
50
|
### Requirements
|
|
51
51
|
|
|
52
52
|
- **Stata 17+** installed on your machine (provides the PyStata library)
|
|
53
|
-
- Python 3.
|
|
53
|
+
- Python 3.10+
|
|
54
54
|
|
|
55
55
|
### Quick Start (Human Users)
|
|
56
56
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# stata-cli
|
|
2
2
|
|
|
3
3
|
[](https://opensource.org/licenses/MIT)
|
|
4
|
-
[](https://www.python.org/)
|
|
5
5
|
[](https://www.npmjs.com/package/stata-cli)
|
|
6
6
|
|
|
7
7
|
[中文版](README.zh.md) | [English](README.md)
|
|
@@ -37,7 +37,7 @@ A command-line interface for [Stata](https://www.stata.com/) via PyStata — bui
|
|
|
37
37
|
### Requirements
|
|
38
38
|
|
|
39
39
|
- **Stata 17+** installed on your machine (provides the PyStata library)
|
|
40
|
-
- Python 3.
|
|
40
|
+
- Python 3.10+
|
|
41
41
|
|
|
42
42
|
### Quick Start (Human Users)
|
|
43
43
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "stata-cli"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.2"
|
|
4
4
|
description = "Command-line interface for running Stata commands via PyStata"
|
|
5
5
|
readme = "README.md"
|
|
6
|
-
requires-python = ">=3.
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
7
|
license = {text = "MIT"}
|
|
8
8
|
keywords = ["stata", "cli", "statistics", "data-science"]
|
|
9
9
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.2.2"
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: stata-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Command-line interface for running Stata commands via PyStata
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: stata,cli,statistics,data-science
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
Requires-Dist: click>=8.0
|
|
10
10
|
Provides-Extra: data
|
|
@@ -14,7 +14,7 @@ Requires-Dist: pandas; extra == "data"
|
|
|
14
14
|
# stata-cli
|
|
15
15
|
|
|
16
16
|
[](https://opensource.org/licenses/MIT)
|
|
17
|
-
[](https://www.python.org/)
|
|
18
18
|
[](https://www.npmjs.com/package/stata-cli)
|
|
19
19
|
|
|
20
20
|
[中文版](README.zh.md) | [English](README.md)
|
|
@@ -50,7 +50,7 @@ A command-line interface for [Stata](https://www.stata.com/) via PyStata — bui
|
|
|
50
50
|
### Requirements
|
|
51
51
|
|
|
52
52
|
- **Stata 17+** installed on your machine (provides the PyStata library)
|
|
53
|
-
- Python 3.
|
|
53
|
+
- Python 3.10+
|
|
54
54
|
|
|
55
55
|
### Quick Start (Human Users)
|
|
56
56
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.2.0"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|