-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
27 lines (26 loc) · 1.02 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="circuitpython-ampule",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="CircuitPython framework for building simple web applications",
long_description="CircuitPython framework for building simple web applications",
long_description_content_type="text/markdown",
url="https://github.com/deckerego/ampule",
author="DeckerEgo",
author_email="john@deckerego.net",
py_modules=["ampule"],
install_requires=[],
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Hardware",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
keywords="adafruit circuitpython micropython web server webserver app webapp framework http https bottle",
)