-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 892 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 892 Bytes
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name="rpisensors",
version="0.2.1",
description="Raspberry Pi Sensors",
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Topic :: System :: Hardware',
'Topic :: Software Development :: Embedded Systems',
],
url="https://github.com/altosz/rpisensors",
author="Alexei Tishin",
author_email="altos.z@gmail.com",
license="GPLv2",
packages=["rpisensors"],
install_requires=[
'smbus-cffi'
],
zip_safe=False
)