-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1.04 KB
/
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
from setuptools import setup
setup(
name='smart-gate',
version='0.0.1',
url='https://github.com/ThorpeJosh/smart-gate',
license='MIT',
author='Joshua Thorpe',
author_email='[email protected]',
description='IOT inspired Raspberry Pi controller for a motorised gate.',
long_description=''.join(open('README.md', encoding='utf-8').readlines()),
long_description_content_type='text/markdown',
keywords=['IOT', 'RPi', 'smart', 'gate'],
packages=['rpi_src'],
include_package_data=True,
install_requires=['pyserial==3.4', 'pathlib==1.0.1', 'schedule==0.6.0', 'gpiozero==1.5.0',
'picamera==1.13', 'jsonschema==3.0.0',
'psycopg2-binary>=2.8.0', 'tzlocal>=2.1'],
extras_require={"dev": ["pytest==6.0.0", "pylint==2.6.0"]},
python_requires='>=3.5',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
]
)