Commit 59b8e6d 1 parent 7add85d commit 59b8e6d Copy full SHA for 59b8e6d
File tree 2 files changed +15
-14
lines changed
2 files changed +15
-14
lines changed Original file line number Diff line number Diff line change @@ -17,19 +17,6 @@ classifiers = [
17
17
" Programming Language :: Python :: 3" ,
18
18
" Programming Language :: Python :: 3.10" ,
19
19
]
20
- dependencies = [
21
- " aiohttp == 3.8.1" ,
22
- " humanize == 4.2.3" ,
23
- " pillow == 9.2.0" ,
24
- " py-cord == 2.0.0" ,
25
- ]
26
-
27
- [project .optional-dependencies ]
28
- dev = [
29
- " black == 22.6.0" ,
30
- " isort == 5.10.1" ,
31
- " pre-commit == 2.19.0" ,
32
- ]
33
20
34
21
[project .scripts ]
35
22
qibot = " qibot.bot:main"
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
- setup ()
3
+ setup (
4
+ install_requires = [
5
+ "aiohttp == 3.8.1" ,
6
+ "humanize == 4.2.3" ,
7
+ "pillow == 9.2.0" ,
8
+ "py-cord == 2.0.0" ,
9
+ ],
10
+ extras_require = {
11
+ "dev" : [
12
+ "black == 22.6.0" ,
13
+ "isort == 5.10.1" ,
14
+ "pre-commit == 2.19.0" ,
15
+ ],
16
+ },
17
+ )
You can’t perform that action at this time.
0 commit comments