15
15
long_description_content_type = "text/markdown" ,
16
16
url = github_url ,
17
17
project_urls = {
18
- ' Changelog' : f' { github_url } /blob/master/docs/pages/changelog.rst' ,
19
- ' Issues' : f' { github_url } /issues' ,
20
- ' Source Code' : github_url ,
18
+ " Changelog" : f" { github_url } /blob/master/docs/pages/changelog.rst" ,
19
+ " Issues" : f" { github_url } /issues" ,
20
+ " Source Code" : github_url ,
21
21
},
22
22
keywords = (
23
- ' package, parser, plot, python, pytorch, reader, tensorboard, tensorboardx, tensorflow'
23
+ " package, parser, plot, python, pytorch, reader, tensorboard, tensorboardx, tensorflow"
24
24
),
25
25
classifiers = [
26
- ' Development Status :: 4 - Beta' ,
27
- ' Intended Audience :: Science/Research' ,
28
- ' Programming Language :: Python :: 3.7' ,
29
- ' Programming Language :: Python :: 3.8' ,
30
- ' Programming Language :: Python :: 3.9' ,
26
+ " Development Status :: 4 - Beta" ,
27
+ " Intended Audience :: Science/Research" ,
28
+ " Programming Language :: Python :: 3.7" ,
29
+ " Programming Language :: Python :: 3.8" ,
30
+ " Programming Language :: Python :: 3.9" ,
31
31
"License :: OSI Approved :: MIT License" ,
32
32
"Operating System :: OS Independent" ,
33
33
],
34
34
package_dir = {"" : "." },
35
35
packages = setuptools .find_packages (where = "." , exclude = ("tests*" ,)),
36
36
python_requires = ">=3.7" ,
37
37
install_requires = [
38
- ' pandas>=1.3.0' ,
39
- ' tensorflow>=2.0.0' ,
38
+ " pandas>=1.3.0" ,
39
+ " tensorflow>=2.0.0" ,
40
40
],
41
41
extras_require = {
42
- ' testing' : [' pytest' , ' mypy' , ' flake8' , ' pylint' , ' sphinx' ,
43
- ' sphinx-rtd-theme' , ' torch' , ' tensorboardX' , ' seaborn' ,
44
- ' pytest-cov' , ' sphinx-tabs' ],
42
+ " testing" : [" pytest" , " mypy" , " flake8" , " pylint" , " sphinx" ,
43
+ " sphinx-rtd-theme" , " torch" , " tensorboardX" , " seaborn" ,
44
+ " pytest-cov" , " sphinx-tabs" ],
45
45
},
46
- )
46
+ )
47
+
48
+ # Note: PyPI seems to only recognize double-quoted strings
0 commit comments