-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (28 loc) · 829 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
#!/usr/bin/env python3
# Copyright (c) 2014-present, Facebook, Inc.
from setuptools import setup
setup(
name="firestarter",
version="6.9",
description="Simple HTTP frontend for turning my fireplace on and off",
packages=["firestarter"],
package_dir={"": "src"},
url="http://github.com/cooperlees/firestarter/",
author="Cooper Lees",
author_email="[email protected]",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 3 - Alpha",
],
python_requires=">=3.8",
install_requires=[
"RPi.GPIO",
"aiohttp",
"basicauth",
"gunicorn",
"uvloop",
],
)