forked from astro-pi/python-sense-hat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.23 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
40
41
42
43
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="sense-hat",
version="2.2.0",
author="Dave Honess",
author_email="[email protected]",
description="Python module to control the Raspberry Pi Sense HAT used in the Astro Pi mission",
long_description=read('README.rst'),
license="BSD",
keywords=[
"sense hat",
"raspberrypi",
"astro pi",
],
url="https://github.com/RPi-Distro/python-sense-hat",
packages=find_packages(),
package_data={
"txt": ['sense_hat_text.txt'],
"png": ['sense_hat_text.png']
},
include_package_data=True,
install_requires=[
"pillow",
"numpy"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Education",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
],
)