-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from akrherz/at_fun
ATmosphere time
- Loading branch information
Showing
9 changed files
with
107 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
recursive-include iembot *.py | ||
include src/iembot/data/startrek |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
# generates RSS | ||
feedgen | ||
# get pyiem from github | ||
git+https://github.com/akrherz/pyIEM.git | ||
# twisted memcached | ||
txyam2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,39 @@ | ||
[build-system] | ||
build-backend = "setuptools.build_meta" | ||
|
||
requires = [ "setuptools" ] | ||
|
||
[project] | ||
name = "iembot" | ||
description = "A poorly written XMPP bot that does other things" | ||
readme = "README.md" | ||
license = { "text" = "Apache" } | ||
authors = [ | ||
{ name = "daryl herzmann", email = "[email protected]" }, | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
] | ||
dynamic = [ | ||
"version", | ||
] | ||
|
||
urls."Homepage" = "https://github.com/akrherz/iembot" | ||
|
||
[tool.setuptools_scm] | ||
# can be empty if no extra settings are needed, presence enables setuptools_scm | ||
|
||
[tool.ruff] | ||
line-length = 79 | ||
target-version = "py39" | ||
|
||
[tool.ruff.lint] | ||
select = [ | ||
"E", | ||
"F", | ||
"I", | ||
line-length = 79 | ||
lint.select = [ | ||
"E", | ||
"F", | ||
"I", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,3 @@ | ||
[metadata] | ||
name = iembot | ||
author = daryl herzmann | ||
author_email = [email protected] | ||
url = https://github.com/akrherz/iembot | ||
keywords = meteorology | ||
license = Apache | ||
license-file = LICENSE | ||
description = An XMPP Message Router, sort of. | ||
description-file = README.md | ||
|
||
[aliases] | ||
test = pytest | ||
|
||
|
@@ -21,7 +10,7 @@ include_package_data = True | |
package_dir = | ||
= src | ||
packages = find: | ||
setup_requires = setuptools_scm | ||
|
||
|
||
[options.packages.find] | ||
where = src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters