-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpydist.json
76 lines (76 loc) · 1.85 KB
/
pydist.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"description": "Longer description",
"summary": "Short description",
"build_requires": [],
"metadata_version": "2.0",
"version": "0.1",
"provides": [
"foobar (0.1)"
],
"extensions": {
"python.details": {
"license": "PSF",
"keywords": [
"foo",
"bar"
],
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.4",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities"
]
}
},
"meta_requires": [
{
"requires": ["bar (1.0)"]
}
],
"extras": ["ssl", "certs"],
"run_requires": [
{
"requires": ["foo"]
},
{
"requires": ["certifi (0.0.8)"],
"extra": "certs"
},
{
"requires": ["wincertstore (0.1)"],
"extra": "ssl",
"environment": "sys_platform=='win32'"
},
{
"requires": ["ctypes (1.0.2)"],
"extra": "ssl",
"environment": "sys_platform=='win32' and python_version=='2.4'"
},
{
"requires": ["ssl (1.16)"],
"extra": "ssl",
"environment": "python_version in '2.4, 2.5'"
}
],
"test_requires": [
{
"requires": ["nose"]
},
{
"requires": ["nose-udp"],
"extra": "udp"
}
],
"name": "foobar"
}