-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added setup.py - Adjusted internal structure and launcher to work with it - Reworked --show-logs flag. Now if not enabled, it will still print critical errors. May be confusing, but program ending without output would be also confusing. - Updated readme to highlight installation with setup.py - Set bot's version to 1.0.0
- Loading branch information
Showing
13 changed files
with
71 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
black>=21.7b0 | ||
black==21.7b0 | ||
setuptools>=57.4.0 | ||
wheel>=0.36.2 | ||
twine>=3.4.1 |
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
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
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
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
from setuptools import find_packages, setup | ||
|
||
with open("README.md") as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name="notashark", | ||
version="1.0.0", | ||
description="notashark - discord bot for King Arthur's Gold", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/moonburnt/notashark", | ||
author="moonburnt", | ||
author_email="moonburnt@disroot.org", | ||
license="GPLv3", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
], | ||
packages=find_packages(), | ||
install_requires=[ | ||
"pykagapi==0.2.1", | ||
"discord.py==1.7.3", | ||
"requests>=2.25.1", | ||
], | ||
entry_points={ | ||
"console_scripts": ["notashark = notashark:cli.main"], | ||
}, | ||
) |