Skip to content

Commit

Permalink
Add PyPi config
Browse files Browse the repository at this point in the history
  • Loading branch information
tuupola committed Oct 11, 2017
1 parent 4c19e62 commit e411aa0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
@@ -0,0 +1,23 @@
import sys
sys.path.pop(0)
from setuptools import setup

setup(
name="micropython-ili934x",
py_modules=["ili934x"],
version="0.1.0",
description="MicroPython SPI driver for ILI934X based displays",
long_description="",
keywords="micropython tft lcd",
url="https://github.com/tuupola/micropython-ili934x",
author="Mika Tuupola",
author_email="tuupola@appelsiini.net",
maintainer="Mika Tuupola",
maintainer_email="tuupola@appelsiini.net",
license="MIT",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: Implementation :: MicroPython",
"License :: OSI Approved :: MIT License",
],
)

0 comments on commit e411aa0

Please sign in to comment.