-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
73 lines (63 loc) · 1.97 KB
/
setup.cfg
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
66
67
68
69
70
71
72
73
[metadata]
name = timetemp3
description = Display time/temperature on Raspberry Pi and log to cloud
version=get_version("timetemp3/__init__.py"),
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/idcrook/timetemp3
author = David Crook
author_email = idcrook@users.noreply.github.com
license = MIT
license_file = LICENSE.txt
classifiers =
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Natural Language :: English",
"Topic :: Home Automation",
"Topic :: System :: Hardware",
"Topic :: System :: Logging",
"Topic :: System :: Monitoring",
"Environment :: Console"
project_urls =
# Documentation = https://screed.readthedocs.io
Source = https://github.com/idcrook/timetemp3
Tracker = https://github.com/idcrook/timetemp3/issues
[options]
zip_safe = False
packages = find:
platforms = any
include_package_data = True
install_requires =
systemd-python
python-nest>=4.2.0
Adafruit_BMP @ git+https://github.com/adafruit/Adafruit_Python_BMP.git@1.5.4
Adafruit_LED_Backpack @ git+https://github.com/adafruit/Adafruit_Python_LED_Backpack.git@master
phant3 @ git+https://github.com/idcrook/python3-phant.git@main
pyowm @ git+https://github.com/idcrook/pyowm.git@onecallapi30
python_requires = >=3.7
# setup_requires =
# setuptools_scm
[bdist_wheel]
universal = 1
[aliases]
test=pytest
[options.entry_points]
console_scripts =
timetemp_7segment_clock=timetemp3.my_7segment_clock:main
timetemp_weather_logging=timetemp3.my_weather_logging:main
[options.packages.find]
exclude =
etc*
conf*
docs*
timetemp3.tests*
# test_suite='nose.collector',
# tests_require=['nose'],
# [options.extras_require]
# test =
# pytest >= 6.2.2
# pycodestyle
# pytest-cov
# all =
# %(test)s