-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I don't understand how wheels are supposed to be commited. I put them under /wheels for now.
- Loading branch information
1 parent
acf7575
commit 2c96b45
Showing
24 changed files
with
43 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "BoostBots" | ||
version = "0.9.1" | ||
authors = [{email = "[email protected]"}] | ||
description = "Boost Bots" | ||
requires-python = ">=3.7" | ||
dependencies = [ | ||
"lnd-grpc-client<1,>=0.3.39", | ||
"click<9,>=8.0.3", | ||
] | ||
|
||
[project.optional-dependencies] | ||
tests = [ | ||
"pytest<7,>=6.2.5", | ||
"black<23,>=22.1.0", | ||
"isort<6,>=5.10.1", | ||
] | ||
irc = ["bottom<3,>=2.2.0"] | ||
mastodon = ["atoot @ git+https://[email protected]/valcanobacon/[email protected]"] # egg=atoot | ||
matrix = ["matrix-nio<1,>=0.19.0"] | ||
nostr = ["nostr @ git+https://[email protected]/valcanobacon/python-nostr"] # egg=nostr | ||
|
||
[project.scripts] | ||
boostirc = "src.irc:cli" | ||
boostodon = "src.mastodon:cli" | ||
boostodon-leaderboard = "src.mastodon:leaderboard" | ||
boostrix = "src.matrix:cli" | ||
boostr = "src.nostr:cli" | ||
|
||
[tool.setuptools] | ||
include-package-data = false | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["src"] # src.* | ||
namespaces = false |
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,44 +1,6 @@ | ||
#!/usr/bin/env python3 | ||
#!/usr/bin/env python | ||
|
||
from setuptools import find_packages, setup | ||
import setuptools | ||
|
||
setup( | ||
name="BoostBots", | ||
version="0.9.1", | ||
python_requires=">=3.7", | ||
description="Boost Bots", | ||
author_email="[email protected]", | ||
packages=find_packages(include=["src", "src.*"]), | ||
entry_points={ | ||
"console_scripts": [ | ||
"boostirc=src.irc:cli", | ||
"boostodon=src.mastodon:cli", | ||
"boostodon-leaderboard=src.mastodon:leaderboard", | ||
"boostrix=src.matrix:cli", | ||
"boostr=src.nostr:cli", | ||
], | ||
}, | ||
install_requires=[ | ||
"lnd-grpc-client<1,>=0.3.39", | ||
"click<9,>=8.0.3", | ||
], | ||
extras_require={ | ||
"tests": [ | ||
"pytest<7,>=6.2.5", | ||
"black<23,>=22.1.0", | ||
"isort<6,>=5.10.1", | ||
], | ||
"irc": [ | ||
"bottom<3,>=2.2.0", | ||
], | ||
"mastodon": [ | ||
"atoot @ git+https://[email protected]/valcanobacon/[email protected]#egg=atoot", | ||
], | ||
"matrix": [ | ||
"matrix-nio<1,>=0.19.0", | ||
], | ||
"nostr": [ | ||
"nostr @ git+https://[email protected]/valcanobacon/python-nostr#egg=nostr", | ||
], | ||
}, | ||
) | ||
if __name__ == "__main__": | ||
setuptools.setup() |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.