File tree 1 file changed +10
-19
lines changed
1 file changed +10
-19
lines changed Original file line number Diff line number Diff line change 11
11
with open (os .path .join (base_dir , "workos" , "__about__.py" )) as f :
12
12
exec (f .read (), about )
13
13
14
- dev_requirements = [
15
- "flake8" ,
16
- "pytest==4.6.9" ,
17
- "pytest-cov==2.8.1" ,
18
- "six==1.13.0" ,
19
- ]
20
- if sys .version_info .major == 3 :
21
- dev_requirements .extend (
22
- [
23
- "black==22.3.0" ,
24
- "twine==4.0.2" ,
25
- "requests==2.30.0" ,
26
- "urllib3==2.0.2" ,
27
- ]
28
- )
29
-
30
14
setup (
31
15
name = about ["__package_name__" ],
32
16
version = about ["__version__" ],
45
29
license = about ["__license__" ],
46
30
install_requires = ["requests>=2.22.0" ],
47
31
extras_require = {
48
- "dev" : dev_requirements ,
32
+ "dev" : [
33
+ "flake8" ,
34
+ "pytest==4.6.9" ,
35
+ "pytest-cov==2.8.1" ,
36
+ "six==1.13.0" ,
37
+ "black==22.3.0" ,
38
+ "twine==4.0.2" ,
39
+ "requests==2.30.0" ,
40
+ "urllib3==2.0.2" ,
41
+ ],
49
42
":python_version<'3.4'" : ["enum34" ],
50
43
},
51
44
classifiers = [
54
47
"License :: OSI Approved :: MIT License" ,
55
48
"Operating System :: OS Independent" ,
56
49
"Programming Language :: Python" ,
57
- "Programming Language :: Python :: 2" ,
58
- "Programming Language :: Python :: 2.7" ,
59
50
"Programming Language :: Python :: 3" ,
60
51
"Programming Language :: Python :: 3.4" ,
61
52
"Programming Language :: Python :: 3.5" ,
You can’t perform that action at this time.
0 commit comments