Changeset - e0c84fc4581a
[Not reviewed]
0 2 0
Branko Majic (branko) - 4 years ago 2020-11-04 21:04:20
branko@majic.rs
GC-40: Updated Sphinx to latest available version and updated copyright notice in the documentation configuration file.
2 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
docs/conf.py
Show inline comments
 
# -*- coding: utf-8 -*-
 
#
 
# Copyright (C) 2018 Branko Majic
 
# Copyright (C) 2020 Branko Majic
 
#
 
# This file is part of Gimmecert documentation.
 
#
 
# This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
 
# Unported License. To view a copy of this license, visit
 
# http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative
 
# Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
 
#
 

	
 
#
 
# Configuration file for the Sphinx documentation builder.
 
#
 
# This file does only contain a selection of the most common options. For a
 
# full list see the documentation:
 
# http://www.sphinx-doc.org/en/stable/config
 

	
 
# -- Path setup --------------------------------------------------------------
 

	
 
# If extensions (or modules to document with autodoc) are in another directory,
 
# add these directories to sys.path here. If the directory is relative to the
 
# documentation root, use os.path.abspath to make it absolute, like shown here.
 
#
 
# import os
 
# import sys
 
# sys.path.insert(0, os.path.abspath('.'))
 

	
 

	
 
# -- Project information -----------------------------------------------------
 

	
 
project = 'Gimmecert'
 
copyright = '2018, Branko Majic'
 
copyright = '2020, Branko Majic'
 
author = 'Branko Majic'
 

	
 
# The short X.Y version
 
version = '0.0-dev'
 
# The full version, including alpha/beta/rc tags
 
release = version
 

	
 

	
 
# -- General configuration ---------------------------------------------------
 

	
 
# If your documentation needs a minimal Sphinx version, state it here.
 
#
 
# needs_sphinx = '1.0'
 

	
 
# Add any Sphinx extension module names here, as strings. They can be
 
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
 
# ones.
 
extensions = [
 
    'sphinx.ext.todo',
 
]
 

	
 
# Add any paths that contain templates here, relative to this directory.
 
templates_path = ['_templates']
 

	
setup.py
Show inline comments
 
@@ -11,49 +11,49 @@
 
# later version.
 
#
 
# Gimmecert is distributed in the hope that it will be useful, but
 
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 
# details.
 
#
 
# You should have received a copy of the GNU General Public License along with
 
# Gimmecert.  If not, see <http://www.gnu.org/licenses/>.
 
#
 

	
 
import os
 
from setuptools import setup, find_packages
 

	
 
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
 

	
 
python_requirements = ">=3.5,<3.9"
 

	
 
install_requirements = [
 
    'cryptography>=2.9,<2.10',
 
    'python-dateutil>=2.8,<2.9',
 
]
 

	
 
doc_requirements = [
 
    'sphinx>=3.0,<3.1',
 
    'sphinx>=3.3,<3.4',
 
]
 

	
 
test_lint_requirements = [
 
    'flake8>=3.8,<3.9',
 
]
 

	
 
test_requirements = [
 
    'freezegun>=1.0,<1.1',
 
    'pytest>=6.1,<6.2',
 
    'pytest-cov>=2.10,<2.11',
 
    'tox>=3.20,<3.21',
 
    'pexpect>=4.8,<4.9',
 
]
 

	
 
release_requirements = [
 
    'twine',
 
]
 

	
 
setup_requirements = [
 
    'pytest-runner>=5.2,<5.3',
 
]
 

	
 
development_requirements = doc_requirements + test_requirements + test_lint_requirements + release_requirements
 

	
0 comments (0 inline, 0 general)