Skip to content

Commit

Permalink
use incremental
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkowl committed Sep 4, 2017
1 parent 89624a3 commit 392a022
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -6,3 +6,6 @@ dist
.coverage
.DS_Store
*~
_trial_temp/
apidocs/
*.egg-info
4 changes: 2 additions & 2 deletions pydoctor/__init__.py
@@ -1,5 +1,5 @@
"""PyDoctor, an API documentation generator for Python libraries."""

from __future__ import print_function
from ._version import __version__

version_info = (16, 2, 1, '', 0)
__all__ = ["__version__"]
11 changes: 11 additions & 0 deletions pydoctor/_version.py
@@ -0,0 +1,11 @@
"""
Provides PyDoctor version information.
"""

# This file is auto-generated! Do not edit!
# Use `python -m incremental.update pydoctor` to change this file.

from incremental import Version

__version__ = Version('pydoctor', 17, 9, 0)
__all__ = ["__version__"]
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -10,7 +10,6 @@

setup(
name='pydoctor',
version='16.3.0',
author='Michael Hudson-Doyle',
author_email='micahel@gmail.com',
url='http://github.com/twisted/pydoctor',
Expand Down Expand Up @@ -40,7 +39,10 @@
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
],
use_incremental=True,
setup_requires=["incremental"],
install_requires=[
"incremental",
"appdirs",
"CacheControl[filecache]",
"Twisted",
Expand Down

0 comments on commit 392a022

Please sign in to comment.