-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 953 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from glob import glob
from setuptools import setup, find_packages
setup(
name='webduino-generator',
version='0.5',
license='UNLICENSE',
url='https://github.com/StoneLabs/webduino-generator',
author='Levy Ehrstein',
author_email='[email protected]',
description='Python program to automatically generate source code for an arduino web server',
long_description='Python program to automatically create arduino webserver from folder.\nSupports basically all file types. For example: html, js, css, images, and arbitrary binaries.',
packages=["webduino_generator"],
package_data={"webduino_generator": ["templates/*", "demo/*"]},
include_package_data=True,
entry_points={
'console_scripts': ['webduino-generator=webduino_generator.entrypoint:main',
'wgen=webduino_generator.entrypoint:main'],
},
install_requires=["jinja2", "rich", "simple-term-menu"],
)