-
Notifications
You must be signed in to change notification settings - Fork 135
/
setup.json
61 lines (59 loc) · 1.42 KB
/
setup.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
{
"name": "dpt-rp1-py",
"version": "0.1.16",
"description": "Python package to manage a Sony DPT-RP1",
"license": "MIT",
"authors": [
"Jan-Gerd Tenberge",
"Cuihtlauac Alvarado",
"Juan Grigera",
"Yunjae Lee",
"Kazuhiko Sakaguchi",
"Yanzi Zhu",
"Sreepathi Pai",
"Jochen Schroeder",
"Alexander Fuchs",
"Xiang Ji",
"Håkon J. D. Johnsen"
],
"emails": [
],
"namespace_packages": [
],
"packages": [
"dptrp1",
"dptrp1.cli"
],
"install_requires": [
"httpsig>=1.1.2",
"requests>=2.18.4",
"pbkdf2>=1.3",
"urllib3>=1.22",
"pyyaml",
"anytree",
"fusepy",
"zeroconf>=0.29.0",
"tqdm"
],
"entry_points": {
"console_scripts": [
"dptrp1=dptrp1.cli.dptrp1:main",
"dptmount=dptrp1.cli.dptmount:main"
]
},
"classifiers": [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3"
]
}