-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (30 loc) · 1.07 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
#!/usr/bin/env python
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'readme.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'lcdscreen',
version = '1.2.1',
description = ('A class to write to a LCD Screen using a raspberry pi'),
long_description = long_description,
keywords = 'raspberry pi lcd screen',
url = 'https://github.com/mikestreety/pypi-lcdscreen',
author = 'Mike Street',
author_email = '[email protected]',
license = 'MIT',
include_package_data = True,
packages = find_packages(exclude=['contrib', 'docs', 'tests*']),
classifiers=[
'Programming Language :: Python :: 2.7',
'Development Status :: 4 - Beta',
'Topic :: System :: Hardware',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python'
],
)