forked from OoTRandomizer/rtgg-randobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 884 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='ootr-randobot',
description='racetime.gg bot for generating OoTR seeds.',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
url='https://racetime.gg/ootr',
project_urls={
'Source': 'https://github.com/deains/ootr-randobot',
},
version='1.0.0',
install_requires=[
'gql[aiohttp]>=3.4.0,<4.0',
'isodate>=0.6.1,<0.7',
'racetime_bot>=1.5.0,<3.0',
],
packages=find_packages(),
entry_points={
'console_scripts': [
'randobot=randobot:main',
],
},
)