-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.74 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
36
37
38
39
40
41
42
43
44
{
"name": "validrequest",
"version": "1.0.0",
"description": "A request handler validation tool for RESTful API endpoints.",
"main": "demo.py",
"scripts": {
"start": "python3 demo.py",
"test": "python3 tests/validator_test.py",
"dev": "python3 -m pip install --editable .",
"build": "python3 setup.py sdist bdist_wheel",
"publish": "twine upload dist/*"
},
"author": "AbleInc - Jaylen Douglas",
"license": "GNU General Public License v3 (GPLv3)",
"setup": {
"name": "validrequest",
"license": "GNU",
"author": "AbleInc - Jaylen Douglas",
"author_email": "douglas.jaylen@gmail.com",
"description": "A request handler validation tool for RESTful API endpoints.",
"long_description": "file: README.md",
"long_description_content_type": "text/markdown",
"url": "https://github.com/ableinc/validrequest",
"keywords": ["validation tool", "validation", "api", "restful", "endpoints", "ableinc"],
"packages": ["validrequest"],
"classifiers": [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
},
"dependencies": {
"pypm2": "0.2.1",
"twine": "4.0.2"
},
"devDependencies": {}
}