File tree Expand file tree Collapse file tree 4 files changed +23
-10
lines changed
Expand file tree Collapse file tree 4 files changed +23
-10
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ Please raise an issue if you have problems.
108108Dependencies
109109============
110110
111- - Python >3.5
111+ - Python >=3.8
112112- If you run the examples option you will need many more tools. See
113113 the Dockerfiles included for specific instructions.
114114
Original file line number Diff line number Diff line change 1- # Python 2 to 3 changed the use of __init__.py
2- # To avoid namespace problems use this for 2 and 3 compatibility
3- # https://packaging.python.org/namespace_packages/?highlight=__init__
4- # Otherwise omit __init__.py entirely unless you have sub-packages
1+ """project_quickstart package."""
52
6- __path__ = __import__ ( 'pkgutil' ). extend_path ( __path__ , __name__ )
3+ from . version import set_version
74
8- # from .project_quickstart import project_quickstart
9- # from .project_quickstart import projectQuickstart
5+ __all__ = ["__version__" ]
6+
7+ __version__ = set_version ()
Original file line number Diff line number Diff line change 11def set_version ():
2- __version__ = '0.3.7'
3- return (__version__ )
2+ """Return the current package version."""
3+
4+ __version__ = "0.3.8"
5+ return __version__
Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools>=61" , " wheel" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " project_quickstart"
7+ version = " 0.3.8"
8+ description = " Boilerplate tools and templates for setting up a data analysis project."
9+ readme = " README.rst"
10+ requires-python = " >=3.8"
11+ dependencies = [" docopt" ]
12+ license = {file = " LICENSE" }
13+
You can’t perform that action at this time.
0 commit comments