forked from weewx/weewx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (69 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[tool.poetry]
name = "weewx"
version = "5.1.0"
description = "The WeeWX weather software system."
authors = [
"Tom Keffer <[email protected]>",
"Matthew Wall <[email protected]>"
]
license = "GPL3"
readme = 'README.md'
repository = "https://github.com/weewx/weewx"
homepage = "https://weewx.com"
documentation = "https://weewx.com/docs"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Physics'
]
packages = [
{ include = "schemas", from = "src" },
{ include = "weecfg", from = "src" },
{ include = "weectllib", from = "src" },
{ include = "weedb", from = "src" },
{ include = "weeimport", from = "src" },
{ include = "weeplot", from = "src" },
{ include = "weeutil", from = "src" },
{ include = "weewx", from = "src" },
{ include = "weewx_data", from = "src" },
{ include = "weectl.py", from = "src" },
{ include = "weewxd.py", from = "src" },
]
include = [
{ path = "LICENSE.txt" },
{ path = "README.md"},
]
exclude = [
'./src/**/tests/**/*',
]
[tool.poetry.dependencies]
python = "^3.6"
configobj = "^5.0"
# This is the renamed "Cheetah" package:
CT3 = "^3.1"
Pillow = ">=5.2"
ephem = "^4.1"
PyMySQL = "^1.0"
pyserial = "^3.4"
pyusb = "^1.0.2"
importlib-resources = {version = ">=3.3", python = "3.6"}
[tool.poetry.scripts]
weectl = 'weectl:main'
weewxd = 'weewxd:main'
[build-system]
# Minimum requirements for the build system to execute.
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"