-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·51 lines (49 loc) · 1.55 KB
/
pyproject.toml
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
[project]
name = ""
version = "0.6.12"
authors = [
{ name = "Andreas Würl", email = "andi@tryb.de" },
]
description = "Simple data logging client for InfluxDB"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: Apache Software License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
dependencies = [
"adafruit-circuitpython-requests",
"adafruit-circuitpython-ntp",
"adafruit-circuitpython-adafruitio",
"adafruit-circuitpython-scd4x",
"adafruit-circuitpython-sgp40",
"adafruit-circuitpython-sht4x",
"adafruit-circuitpython-bmp3xx",
"adafruit-circuitpython-bme680",
"adafruit-circuitpython-neopixel",
]
[project.optional-dependencies]
tests = [
'pytest-cov',
'mock',
'assertpy',
'tomlkit',
'pip-tools',
'requests'
]
[project.scripts]
klimalogger = "klimalogger.script.klimalogger:main"
receive_data = "klimalogger.script.receive_data:main"
[project.urls]
"Homepage" = "https://github.com/wuan/klimalogger"
"Bug Tracker" = "https://github.com/wuan/klimalogger/issues"