-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 693 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='torabot',
version='0.1.0',
packages=find_packages(),
entry_points={
'torabot.mods': [
'tora = torabot.mods.tora:Tora',
'pixiv = torabot.mods.pixiv:Pixiv',
'bilibili = torabot.mods.bilibili:Bilibili',
'yyets = torabot.mods.yyets:Yyets',
'yandere = torabot.mods.yandere:Yandere',
'danbooru = torabot.mods.danbooru:Danbooru',
'feed = torabot.mods.feed:Feed',
'ehentai = torabot.mods.ehentai:Ehentai',
'gist = torabot.mods.gist:Gist',
'onereq = torabot.mods.onereq:Onereq',
]
},
)