Files
weewx/pyproject.toml
Tom Keffer 9ef6ffbddb v5.0.0b11
2023-08-30 12:36:54 -07:00

82 lines
2.5 KiB
TOML

[tool.poetry]
name = "weewx"
version = "5.0.0b11"
description = "The WeeWX weather software system. This is an BETA release, and may have many bugs!"
authors = ["Tom Keffer <tkeffer@gmail.com>"]
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.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 = "bin" },
{ include = "wee_resources", from = "bin" },
{ include = "weecfg", from = "bin" },
{ include = "weectllib", from = "bin" },
{ include = "weedb", from = "bin" },
{ include = "weeimport", from = "bin" },
{ include = "weeplot", from = "bin" },
{ include = "weeutil", from = "bin" },
{ include = "weewx", from = "bin" },
{ include = "wee_import.py", from = "bin" },
{ include = "wee_reports.py", from = "bin" },
{ include = "weectl.py", from = "bin" },
{ include = "weewxd.py", from = "bin" },
]
include = [
{ path = "LICENSE.txt" },
{ path = "README.md"},
{ path = "pkg/**/*", format = "sdist" },
{ path = "util/**/*", format = "sdist" },
# By default, Poetry ignores things in .gitignore, which means it will
# ignore bin/wee_resources. Hence, we need to include it back in.
{ path = "bin/wee_resources/**/*"},
]
exclude = [
'bin/*/tests/*',
'bin/*/*/tests/*',
]
[tool.poetry.dependencies]
python = "^3.7"
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"
[tool.poetry.scripts]
wee_import = 'wee_import:main'
wee_reports = 'wee_reports:main'
weectl = 'weectl:main'
weewxd = 'weewxd:main'
[build-system]
# Minimum requirements for the build system to execute.
# requires = ["poetry", "setuptools>=46.0", "wheel", "configobj"]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"