-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (29 loc) · 903 Bytes
/
setup.py
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
import os
from io import open
from setuptools import setup, find_packages
here = os.path.dirname(__file__)
with open(os.path.join(here, 'README.rst'), 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='metispi',
description='In brightest day in blackest night no evil shall escape your sight!',
long_description=long_description,
license='MIT',
url='https://github.com/lotrien/metis',
keywords='RaspberryPi RPi motion sensor',
author='Olha Kurkaiedova',
author_email='olya.kurkaedova@gmail.com',
packages=find_packages(exclude=['docs', 'tests*']),
use_scm_version=True,
setup_requires=[
'setuptools_scm',
],
install_requires=[
'RPi.GPIO >= 0.6.3',
'gpiozero >= 1.3.2',
'picamera >= 1.13',
'blinker >= 1.4',
'python-telegram-bot >= 6.1.0',
'pyyaml >= 3.12',
],
)