Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
Regenerate project skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Sep 2, 2015
1 parent 6768b16 commit dcb5c52
Show file tree
Hide file tree
Showing 8 changed files with 109 additions and 106 deletions.
4 changes: 2 additions & 2 deletions .hgignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
build
dist
build
dist
6 changes: 2 additions & 4 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
jaraco.timing
=============

`Documentation <https://pythonhosted.org/jaraco.timing>`_
jaraco.timing
=============
38 changes: 19 additions & 19 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import setuptools_scm

extensions = [
'sphinx.ext.autodoc',
]

# General information about the project.
project = 'jaraco.timing'
copyright = '2015 Jason R. Coombs'

# The short X.Y version.
version = setuptools_scm.get_version()
# The full version, including alpha/beta/rc tags.
release = version

master_doc = 'index'
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import setuptools_scm

extensions = [
'sphinx.ext.autodoc',
]

# General information about the project.
project = 'jaraco.timing'
copyright = '2015 Jason R. Coombs'

# The short X.Y version.
version = setuptools_scm.get_version(root='..')
# The full version, including alpha/beta/rc tags.
release = version

master_doc = 'index'
16 changes: 8 additions & 8 deletions docs/history.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:tocdepth: 2

.. _changes:

History
*******

.. include:: ../CHANGES.txt
:tocdepth: 2

.. _changes:

History
*******

.. include:: ../CHANGES.txt
44 changes: 22 additions & 22 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
Welcome to jaraco.timing documentation!
========================================

.. toctree::
:maxdepth: 1

history


.. automodule:: jaraco.timing
:members:
:undoc-members:
:show-inheritance:


Indices and tables
==================

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

Welcome to jaraco.timing documentation!
========================================

.. toctree::
:maxdepth: 1

history


.. automodule:: jaraco.timing
:members:
:undoc-members:
:show-inheritance:


Indices and tables
==================

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

6 changes: 3 additions & 3 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[pytest]
norecursedirs=*.egg .eggs dist build
addopts=--doctest-modules
[pytest]
norecursedirs=*.egg .eggs dist build
addopts=--doctest-modules
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[aliases]
release = sdist build_sphinx upload upload_docs
test = pytest
[aliases]
release = sdist build_sphinx upload upload_docs
test = pytest
95 changes: 50 additions & 45 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,45 +1,50 @@
#!/usr/bin/env python
# Generated by jaraco.develop 2.16
# https://pypi.python.org/pypi/jaraco.develop

import io
import sys

import setuptools

with io.open('README.txt', encoding='utf-8') as readme:
long_description = readme.read()

needs_pytest = {'pytest', 'test'}.intersection(sys.argv)
pytest_runner = ['pytest_runner'] if needs_pytest else []
needs_sphinx = {'release', 'build_sphinx', 'upload_docs'}.intersection(sys.argv)
sphinx = ['sphinx'] if needs_sphinx else []

setup_params = dict(
name='jaraco.timing',
use_scm_version=True,
author="Jason R. Coombs",
author_email="jaraco@jaraco.com",
description="jaraco.timing",
long_description=long_description,
url="https://bitbucket.org/jaraco/jaraco.timing",
packages=setuptools.find_packages(),
namespace_packages=['jaraco'],
install_requires=[
],
setup_requires=[
'setuptools_scm',
] + pytest_runner + sphinx,
tests_require=[
'pytest',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
)
if __name__ == '__main__':
setuptools.setup(**setup_params)
#!/usr/bin/env python
# Generated by jaraco.develop 2.20
# https://pypi.python.org/pypi/jaraco.develop

import io
import sys

import setuptools

with io.open('README.txt', encoding='utf-8') as readme:
long_description = readme.read()

needs_pytest = {'pytest', 'test'}.intersection(sys.argv)
pytest_runner = ['pytest_runner'] if needs_pytest else []
needs_sphinx = {'release', 'build_sphinx', 'upload_docs'}.intersection(sys.argv)
sphinx = ['sphinx'] if needs_sphinx else []

setup_params = dict(
name='jaraco.timing',
use_scm_version=True,
author="Jason R. Coombs",
author_email="jaraco@jaraco.com",
description="jaraco.timing",
long_description=long_description,
url="https://bitbucket.org/jaraco/jaraco.timing",
packages=setuptools.find_packages(),
include_package_data=True,
namespace_packages=['jaraco'],
install_requires=[
],
extras_require={
},
setup_requires=[
'setuptools_scm',
] + pytest_runner + sphinx,
tests_require=[
'pytest',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
entry_points={
},
)
if __name__ == '__main__':
setuptools.setup(**setup_params)

0 comments on commit dcb5c52

Please sign in to comment.