File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 60
60
github_username = "domdfcoding"
61
61
web = github_url = f"https://github.com/domdfcoding/domdf_python_tools"
62
62
project_urls = {
63
- "Documentation" : f"https://domdf_python_tools.readthedocs.io" , # TODO: Make this link match the package version
63
+ "Documentation" : f"https://domdf_python_tools.readthedocs.io" ,
64
64
"Issue Tracker" : f"{ github_url } /issues" ,
65
65
"Source Code" : github_url ,
66
66
}
Original file line number Diff line number Diff line change 27
27
project = "domdf_python_tools"
28
28
slug = re .sub (r'\W+' , '-' , project .lower ())
29
29
release = version = __version__
30
- copyright = "2019-2020 Dominic Davis-Foster"
30
+ copyright = "2019-2020 Dominic Davis-Foster" # noqa
31
31
language = 'en'
32
32
package_root = "domdf_python_tools"
33
33
Original file line number Diff line number Diff line change 8
8
from docutils .core import publish_file
9
9
from io import StringIO
10
10
11
- from __pkginfo__ import *
11
+ from __pkginfo__ import * # noqa
12
12
13
13
recipe_dir = repo_root / "conda"
14
14
Original file line number Diff line number Diff line change 2
2
# This file is managed by `git_helper`. Don't edit it directly
3
3
"""Setup script"""
4
4
5
- from __pkginfo__ import *
5
+ from __pkginfo__ import * # noqa
6
6
7
7
from setuptools import setup , find_packages
8
8
You can’t perform that action at this time.
0 commit comments