-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
65 additions
and
40 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 |
---|---|---|
|
@@ -6,30 +6,46 @@ | |
from pyborg import __version__ | ||
|
||
|
||
requires = ["irc>=15.1.1", "toml", | ||
"arrow==0.10.0", "PyTumblr==0.0.6", "requests", "bottle", | ||
"venusian", "click", "humanize", "praw", "Mastodon.py", | ||
"lxml", "attrs", "statsd", "prompt_toolkit"] | ||
requires = [ | ||
"irc>=15.1.1", | ||
"toml", | ||
"arrow==0.10.0", | ||
"PyTumblr==0.0.6", | ||
"requests", | ||
"bottle", | ||
"venusian", | ||
"click", | ||
"humanize", | ||
"praw", | ||
"Mastodon.py", | ||
"lxml", | ||
"attrs", | ||
"statsd", | ||
"prompt_toolkit", | ||
] | ||
if sys.version_info >= (3,): | ||
requires.extend(["discord.py", "aeidon"]) | ||
setup(name="pyborg", | ||
version=__version__, | ||
packages=["pyborg", "pyborg.util", "pyborg.mod"], | ||
scripts=['pyborg-irc.py', | ||
'pyborg_experimental.py'], | ||
author="Jack Laxson", | ||
author_email="[email protected]", | ||
description="Markov chain bot for irc which generates replies to messages", | ||
license="GPL v3 or later", | ||
install_requires=requires, | ||
entry_points=''' | ||
setup( | ||
name="pyborg", | ||
version=__version__, | ||
packages=["pyborg", "pyborg.util", "pyborg.mod"], | ||
scripts=['pyborg-irc.py', 'pyborg_experimental.py'], | ||
author="Jack Laxson", | ||
author_email="[email protected]", | ||
description="Markov chain bot for irc which generates replies to messages", | ||
license="GPL v3 or later", | ||
install_requires=requires, | ||
entry_points=''' | ||
[console_scripts] | ||
pyborg=pyborg_experimental:cli_base | ||
''', | ||
url="https://github.com/jrabbit/pyborg-1up/", | ||
classifiers=["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Topic :: Communications :: Chat :: Internet Relay Chat", | ||
"Topic :: Games/Entertainment", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6",]) | ||
url="https://github.com/jrabbit/pyborg-1up/", | ||
classifiers=[ | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Topic :: Communications :: Chat :: Internet Relay Chat", | ||
"Topic :: Games/Entertainment", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
], | ||
) |
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