44
55base_dir = os .path .dirname (__file__ )
66
7- with open (' README.md' , 'r' ) as f :
7+ with open (" README.md" , "r" ) as f :
88 long_description = f .read ()
99
1010about = {}
11- with open (os .path .join (base_dir , ' workos' , ' __about__.py' )) as f :
11+ with open (os .path .join (base_dir , " workos" , " __about__.py" )) as f :
1212 exec (f .read (), about )
1313
1414dev_requirements = [
15- ' flake8' ,
16- ' pytest==4.6.9' ,
17- ' pytest-cov==2.8.1' ,
18- ' six==1.13.0' ,
15+ " flake8" ,
16+ " pytest==4.6.9" ,
17+ " pytest-cov==2.8.1" ,
18+ " six==1.13.0" ,
1919]
2020if sys .version_info .major == 3 :
21- dev_requirements .extend ([
22- 'black==19.10b0' ,
23- 'twine==3.1.1' ,
24- ])
21+ dev_requirements .extend (
22+ ["black==19.10b0" , "twine==3.1.1" ,]
23+ )
2524
2625setup (
27- name = about [' __package_name__' ],
28- version = about [' __version__' ],
29- author = about [' __author__' ],
30- author_email = about [' __author_email__' ],
31- url = about [' __package_url__' ],
32- description = about [' __description__' ],
26+ name = about [" __package_name__" ],
27+ version = about [" __version__" ],
28+ author = about [" __author__" ],
29+ author_email = about [" __author_email__" ],
30+ url = about [" __package_url__" ],
31+ description = about [" __description__" ],
3332 long_description = long_description ,
34- long_description_content_type = ' text/markdown' ,
35- packages = find_packages (exclude = [' tests*' , ]),
33+ long_description_content_type = " text/markdown" ,
34+ packages = find_packages (exclude = [" tests*" , ]),
3635 zip_safe = False ,
37- license = about ['__license__' ],
38- install_requires = ['requests>=2.22.0' ],
39- extras_require = {
40- 'dev' : dev_requirements ,
41- },
36+ license = about ["__license__" ],
37+ install_requires = ["requests>=2.22.0" ],
38+ extras_require = {"dev" : dev_requirements ,},
4239 classifiers = [
43- ' Development Status :: 1 - Planning' ,
44- ' Intended Audience :: Developers' ,
45- ' License :: OSI Approved :: MIT License' ,
46- ' Operating System :: OS Independent' ,
47- ' Programming Language :: Python' ,
48- ' Programming Language :: Python :: 2' ,
49- ' Programming Language :: Python :: 2.7' ,
50- ' Programming Language :: Python :: 3' ,
51- ' Programming Language :: Python :: 3.4' ,
52- ' Programming Language :: Python :: 3.5' ,
53- ' Programming Language :: Python :: 3.6' ,
54- ' Programming Language :: Python :: 3.7' ,
55- ' Programming Language :: Python :: 3.8' ,
40+ " Development Status :: 1 - Planning" ,
41+ " Intended Audience :: Developers" ,
42+ " License :: OSI Approved :: MIT License" ,
43+ " Operating System :: OS Independent" ,
44+ " Programming Language :: Python" ,
45+ " Programming Language :: Python :: 2" ,
46+ " Programming Language :: Python :: 2.7" ,
47+ " Programming Language :: Python :: 3" ,
48+ " Programming Language :: Python :: 3.4" ,
49+ " Programming Language :: Python :: 3.5" ,
50+ " Programming Language :: Python :: 3.6" ,
51+ " Programming Language :: Python :: 3.7" ,
52+ " Programming Language :: Python :: 3.8" ,
5653 ],
57- )
54+ )
0 commit comments