-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
15 lines (15 loc) · 846 Bytes
/
package.json
File metadata and controls
15 lines (15 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"name": "dataset-processing",
"version": "1.0.0",
"description": "PySpark dataset processing for educational analytics",
"scripts": {
"test": "source env/bin/activate && python -m unittest tests.test_utils tests.test_event_registry tests.test_lookup tests.test_manifest tests.test_keys -v",
"test:all": "source env/bin/activate && python -m unittest discover tests -v",
"test:utils": "source env/bin/activate && python -m unittest tests.test_utils -v",
"test:core": "source env/bin/activate && python -m unittest tests.test_utils tests.test_event_registry tests.test_lookup tests.test_manifest tests.test_keys -v",
"setup": "python -m venv env && source env/bin/activate && pip install -r requirements.txt"
},
"keywords": ["pyspark", "analytics", "data-processing"],
"author": "Your Team",
"license": "MIT"
}