-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (32 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "dpsql",
"description": "Generate BigQuery tables, load and extract data, based on Data Package.",
"version": "0.1.0",
"slug": "dpsql",
"author": "Open Knowledge Foundation",
"author_email": "[email protected]",
"repository": "https://github.com/okfn/datapackage-bigquery-py",
"license": "MIT",
"keywords": "frictionless data",
"classifiers": [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
],
"scripts": {
"check": "python run.py review && python run.py test",
"install": "pip install --upgrade -r requirements.dev.txt",
"report": "coveralls",
"review": "pylama dpsql",
"test": "PACKAGE=dpsql tox"
}
}