forked from RedBalloonShenanigans/antenny
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 731 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 731 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
25
26
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup
setup(
name="nyansat",
version="0.0.1",
description="The nyansat project Micropython devices.",
author="Red Balloon Security",
url="https://github.com/RedBalloonShenanigans/antenny/",
install_requires=[
"aiohttp",
"colorama",
"fuzzywuzzy",
"mpfshell==0.9.1",
"pyserial",
"rbs-tui-dom",
"skyfield",
"websocket_client",
"python-Levenshtein",
"mpfshell",
"dataclasses",
],
keywords=["micropython", ],
classifiers=[],
entry_points={
"console_scripts": [
"nyanui=host:main",
"nyanshell=host.shell:main",
]
},
)