Changeset - e0c84fc4581a
[Not reviewed]
0 2 0
Branko Majic (branko) - 3 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.
 
#
 
@@ -22,25 +22,25 @@
 
# 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.
 
#
setup.py
Show inline comments
 
@@ -23,25 +23,25 @@ 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',
0 comments (0 inline, 0 general)