-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (58 loc) · 1.79 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import os
import pathlib
from setuptools import setup, find_packages
# Package meta-data.
NAME = "greenponik-bh1750"
DESCRIPTION = "Read BH1750 through Python3 on raspberry pi"
URL = "https://github.com/GreenPonik/GreenPonik_BH1750"
EMAIL = "[email protected]"
AUTHOR = "GreenPonik SAS"
REQUIRES_PYTHON = ">=3.6.0"
VERSION = "0.0.7"
# What packages are required for this module to be executed?
REQUIRED = [
# 'requests', 'maya', 'records',
'adafruit-blinka',
'adafruit-circuitpython-bh1750',
'adafruit-extended-bus',
]
# What packages are optional?
EXTRAS = {
# 'fancy feature': ['django'],
}
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
# Load the package's version.py module as a dictionary.
about = {}
if not VERSION:
with open(os.path.join(here, "version.py")) as f:
exec(f.read(), about)
else:
about["__version__"] = VERSION
setup(
name=NAME,
version=about["__version__"],
author=AUTHOR,
author_email=EMAIL,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url=URL,
license="MIT",
install_requires=REQUIRED,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(exclude=("docs")),
python_requires=REQUIRES_PYTHON,
project_urls={ # Optional
"Source": "https://github.com/GreenPonik/GreenPonik_BH1750/",
"Bug Reports": "https://github.com/GreenPonik/\
GreenPonik_BH1750/issues",
},
keywords="GreenPonik hydroponics bh1750 \
light reader python hardware diy iot raspberry pi",
)