-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.83 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "pypm2",
"version": "0.2.1",
"description": "Python package manager for projects running Python3.6 and above.",
"main": "",
"scripts": {
"start": "python main.py",
"test": "echo \"No test available\"",
"dev": "pip install --editable .",
"install": "pip install pypm2",
"build": "python setup.py sdist bdist_wheel",
"publish": "twine upload dist/*"
},
"author": "AbleInc",
"license": "ISC",
"setup": {
"author_email": "douglas.jaylen@gmail.com",
"long_description": "file: README.md",
"long_description_content_type": "text/markdown",
"url": "https://github.com/ableinc/pypm",
"include_package_data": true,
"zip_safe": false,
"keywords": [
"package manager",
"dependency manager",
"manager",
"python 3",
"cli tool",
"command line tool"
],
"packages": [],
"package_data": {
"pypm": [
"pypm/data/pkg.json",
"pypm/data/setup.py",
"pypm/data/setup.cfg",
"pypm/data/pyproject.toml"
]
},
"data_files": [
"pypm/data/pkg.json",
"pypm/data/setup.py",
"pypm/data/setup.cfg",
"pypm/data/pyproject.toml"
],
"entry_points": "\n[console_scripts]\npypm=pypm.cli:cli\n ",
"install_requires": [
"Click==7.0",
"stdlib-list==0.7.0"
],
"classifiers": [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
},
"dependencies": {
"Click": "7.0",
"stdlib-list": "0.7.0"
},
"devDependencies": {}
}