forked from dps/piui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 681 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup
setup(
name = "piui",
version = "0.0.3",
author = "David Singleton",
author_email = "davidsingleton@gmail.com",
description = ("Add a mobile UI to your RaspberryPi"
" project."),
license = "BSD",
keywords = "raspberrypi mobile ui",
url = "http://github.com/dps/piui",
packages=['piui'],
long_description=("Add a mobile UI to your RaspberryPi"
" project."),
package_data = {'piui' : ['piui/static/*']},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
],
install_requires = ['cherrypy'],
)