@@ -9,7 +9,9 @@ readme = "README.rst"
9
9
homepage = " https://github.com/sns-sdks/python-youtube"
10
10
repository = " https://github.com/sns-sdks/python-youtube"
11
11
classifiers = [
12
+ " Intended Audience :: Developers" ,
12
13
" License :: OSI Approved :: Apache Software License" ,
14
+ " Topic :: Software Development :: Libraries :: Python Modules" ,
13
15
" Programming Language :: Python" ,
14
16
" Programming Language :: Python :: 3.6" ,
15
17
" Programming Language :: Python :: 3.7" ,
@@ -20,8 +22,6 @@ classifiers = [
20
22
" Programming Language :: Python :: 3.12" ,
21
23
" Programming Language :: Python :: Implementation :: CPython" ,
22
24
" Programming Language :: Python :: Implementation :: PyPy" ,
23
- " Topic :: Software Development :: Libraries :: Python Modules" ,
24
- " Intended Audience :: Developers" ,
25
25
]
26
26
27
27
packages = [
@@ -32,25 +32,25 @@ packages = [
32
32
[tool .poetry .dependencies ]
33
33
python = " ^3.6"
34
34
requests = " ^2.24.0"
35
- requests-oauthlib = " ^ 1.3.0"
36
- isodate = " ^ 0.7.2"
35
+ requests-oauthlib = " = 1.3.0,<3.0 .0"
36
+ isodate = " >=0.6.0,<= 0.7.2"
37
37
dataclasses-json = [
38
- {version = " ^0.5.3" , python = " <3.7" },
39
- {version = " ^0.6.0" , python = " >=3.7" }
38
+ { version = " ^0.5.3" , python = " <3.7" },
39
+ { version = " ^0.6.0" , python = " >=3.7" }
40
40
]
41
41
42
42
[tool .poetry .dev-dependencies ]
43
43
responses = [
44
- {version = " ^0.17.0" , python = " <3.7" },
45
- {version = " ^0.23.0" , python = " >=3.7" }
44
+ { version = " ^0.17.0" , python = " <3.7" },
45
+ { version = " ^0.23.0" , python = " >=3.7" }
46
46
]
47
47
pytest = [
48
- {version = " ^6.2" , python = " <3.7" },
49
- {version = " ^7.1" , python = " >=3.7" }
48
+ { version = " ^6.2" , python = " <3.7" },
49
+ { version = " ^7.1" , python = " >=3.7" }
50
50
]
51
51
pytest-cov = [
52
- {version = " ^2.10.1" , python = " <3.7" },
53
- {version = " ^3.0.0" , python = " >=3.7" }
52
+ { version = " ^2.10.1" , python = " <3.7" },
53
+ { version = " ^3.0.0" , python = " >=3.7" }
54
54
]
55
55
56
56
[build-system ]
0 commit comments