forked from sim0nx/tsl2561
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·42 lines (37 loc) · 1.13 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
# -*- coding: utf-8 -*-
from os.path import join, dirname
from setuptools import setup, find_packages
import sys
import os
VERSION = (2, 1)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
f = open(join(dirname(__file__), 'README.md'))
long_description = f.read().strip()
f.close()
install_requires = [
]
setup(
name = 'tsl2561',
description = "Driver for the TSL2561 digital luminosity (light) sensors",
license = "BSD",
url = "https://github.com/sim0nx/tsl2561",
download_url = "https://github.com/sim0nx/tsl2561",
long_description = long_description,
version = __versionstr__,
author = "Georges Toth",
author_email = "[email protected]",
packages = find_packages(
where='.',
),
keywords = ['TSL2561'],
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
],
install_requires=install_requires,
)