Skip to content
This repository was archived by the owner on Dec 16, 2018. It is now read-only.

Commit 950a3b6

Browse files
author
Radomir Dopieralski
committed
Add setup.py
1 parent b50a062 commit 950a3b6

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

.hgignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
syntax: glob
2+
*.pyc
3+
*~
4+
.*.swp
5+
docs/_build/*
6+
build/*
7+
dist/*
8+
bin/*
9+
lib/*
10+
include/*
11+
local
12+
*.egg-info
13+
cache/*
14+
*.DS_Store

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
from distutils.core import setup
2+
3+
4+
setup(
5+
name='udisplay',
6+
py_modules=[
7+
'display',
8+
'hx8353',
9+
'ili9341',
10+
's6d02a1',
11+
'ssd1331',
12+
'ssd1351',
13+
'st7735',
14+
],
15+
version="1.0.0",
16+
description="Drivers for displays for MicroPython.",
17+
long_description="""\
18+
This library lets you use a number of popular displays with MicroPython.""",
19+
author='Radomir Dopieralski',
20+
author_email='micropython@sheep.art.pl',
21+
classifiers = [
22+
'Programming Language :: Python :: 3',
23+
'License :: OSI Approved :: MIT License',
24+
],
25+
)

0 commit comments

Comments
 (0)