-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (41 loc) · 1.21 KB
/
setup.py
File metadata and controls
42 lines (41 loc) · 1.21 KB
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
from setuptools import setup
setup(
name='phantom-cli',
version='0.0.0.20',
description='command line tools to interact with the phantom camera',
url='https://github.com/the16thpythonist/phantom-cli',
author='Jonas Teufel',
author_email='jonseb1998@gmail.com',
license='MIT',
packages=[
'phantomcli',
'phantomcli.scripts'
],
package_data={
'scripts': ['*'],
'': ['sample.jpg', '*.jpg']
},
install_requires=[
'click',
'demjson',
'parsimonious',
'imageio',
'numpy',
'matplotlib'
],
entry_points={
'console_scripts':
[
'ph-test=phantomcli.scripts.phtest:command',
'ph-mock=phantomcli.scripts.phmock:command',
'ph-get=phantomcli.scripts.phget:command',
'ph-getall=phantomcli.scripts.phgetall:command',
'ph-set=phantomcli.scripts.phset:command',
'ph-img=phantomcli.scripts.phimg:command',
'ph-discover=phantomcli.scripts.phdiscover:command',
'ph-mode=phantomcli.scripts.phmode:command'
]
},
python_requires='~=3.5',
zip_safe=False
)