-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (32 loc) · 1.12 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": "oscli",
"description": "A command line interface to load data into Open Spending.",
"version": "0.1.0",
"slug": "oscli",
"author": "Open Knowledge Foundation",
"author_email": "info@okfn.org",
"repository": "https://github.com/openspending/os-datastore-cli",
"license": "AGPL",
"keywords": "open spending",
"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",
"review": "pylama oscli",
"report": "coveralls",
"prepare": "pip install --upgrade -r requirements.dev.txt",
"test": "PACKAGE=oscli tox"
}
}