trop 0.1.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.
- trop-0.1.0/PKG-INFO +24 -0
- trop-0.1.0/README.md +3 -0
- trop-0.1.0/pyproject.toml +21 -0
- trop-0.1.0/trop/placeholder.py +1 -0
trop-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: trop
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Package that implements the Triply Robust Panel Estimator (TROP)
|
|
5
|
+
License: MIT
|
|
6
|
+
Author: meganndare, zhaonanq
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
16
|
+
Requires-Dist: cvxpy (==1.4.1)
|
|
17
|
+
Requires-Dist: joblib (==1.3.2)
|
|
18
|
+
Requires-Dist: numpy (==1.26.2)
|
|
19
|
+
Requires-Dist: pandas (==2.1.3)
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# Triply Robust Panel Estimators (TROP)
|
|
23
|
+
|
|
24
|
+
This package will soon contain the replication files and implementation of the TROP estimator.
|
trop-0.1.0/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "trop"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Package that implements the Triply Robust Panel Estimator (TROP)"
|
|
5
|
+
authors = [
|
|
6
|
+
{name = "meganndare, zhaonanq"}
|
|
7
|
+
]
|
|
8
|
+
license = {text = "MIT"}
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"numpy (==1.26.2)",
|
|
13
|
+
"pandas (==2.1.3)",
|
|
14
|
+
"cvxpy (==1.4.1)",
|
|
15
|
+
"joblib (==1.3.2)"
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
[build-system]
|
|
20
|
+
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
21
|
+
build-backend = "poetry.core.masonry.api"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# placeholder to test package publishing
|