-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 781 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = "0.4.3"
setup(
name='zerophone_hw',
py_modules=['zerophone_hw'],
version=version,
description='ZeroPhone low-level API library. Not to be used by users directly! Is only intended for low-level framework developers and as a hardware reference.',
author='CRImier',
author_email='crimier@yandex.ru',
install_requires=[
"gpio"
],
entry_points={"console_scripts": ["zerophone_hw = zerophone_hw:main"]},
url='https://github.com/ZeroPhone/Zerophone-LowLevel-API-Python',
download_url='https://github.com/ZeroPhone/zerophone-lowlevel-api-python/archive/{}.tar.gz'.format(version),
)