-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 983 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
33
34
from setuptools import setup
setup(
name='twitch-plays-llm',
version='0.1.0',
description='A collaborative twitch-based choose-your-own-adventure game',
url='https://github.com/Fuehnix/twitch-plays-llm',
author='Matthew D. Scholefield',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
keywords='twitch plays llm',
packages=['twitch_plays_llm'],
install_requires=[
'openai',
'twitchio',
'pydantic',
'pydantic_settings',
'asgiref',
],
extras_require={
'dev': ['isort', 'blue'],
},
entry_points={
'console_scripts': ['twitch-plays-llm=twitch_plays_llm.__main__:main'],
},
)