-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (35 loc) · 1.15 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
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'mnowotka'
import sys
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='epyper',
version='0.1.0',
author='Michal Nowotka',
author_email='mmmnow@gmail.com',
description='Python driver for Embedded Artists 2.7 inch E-paper Display Module',
url='https://github.com/mnowotka/epyper',
license='MIT',
packages=['epyper'],
long_description=open('README.md').read(),
install_requires=['wiringpi2>=1.0.10',
'Pillow>=2.2.1'],
package_data={
'epyper': ['samples/*'],
},
include_package_data=False,
classifiers=['Development Status :: 4 - Beta',
"Environment :: Handhelds/PDA's",
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Multimedia :: Video :: Display'],
zip_safe=False,
)