forked from wooferzfg/tww-rando-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1018 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import find_packages, setup
setup(
name='tww-rando-bot',
description='racetime.gg bot for generating TWW Randomizer seeds.',
license='GNU General Public License v3.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
url='https://racetime.gg/twwr',
project_urls={
'Source': 'https://github.com/wooferzfg/tww-rando-bot',
},
version='1.0.0',
install_requires=[
'racetime_bot@git+https://github.com/wooferzfg/racetime-bot@tww-rando-bot',
'PyGithub==2.2.0',
'shortuuid==1.0.13',
'isodate>=0.6.1,<0.7',
],
packages=find_packages(),
entry_points={
'console_scripts': [
'randobot=randobot:main',
],
},
)