-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0f6fd1
commit dadf589
Showing
17 changed files
with
182 additions
and
281 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Developers | ||
========== | ||
|
||
* sebastianneubauer <[email protected]> | ||
* Sebastian Neubauer <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
========= | ||
Changelog | ||
========= | ||
|
||
Version 0.1 | ||
=========== | ||
|
||
- Feature A added | ||
- FIX: nasty bug #1729 fixed | ||
- add your changes here! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Copyright 2016 Sebastian Neubauer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.. _authors: | ||
.. include:: ../AUTHORS.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.. _changes: | ||
.. include:: ../CHANGES.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.. _license: | ||
|
||
======= | ||
License | ||
======= | ||
|
||
.. literalinclude:: ../LICENSE.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
from ._version import get_versions | ||
import pkg_resources | ||
|
||
__version__ = get_versions()['version'] | ||
del get_versions | ||
try: | ||
__version__ = pkg_resources.get_distribution(__name__).version | ||
except: | ||
__version__ = 'unknown' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,6 @@ | |
# numpy | ||
# scipy>=0.9 | ||
mock | ||
httpretty | ||
httpretty | ||
pytest | ||
pytest-cov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
[metadata] | ||
name = postgraas_server | ||
summary = Add a short description here! | ||
author = Sebastian Neubauer | ||
author-email = [email protected] | ||
license = none | ||
home-page = http://... | ||
description-file = README.rst | ||
# Add here all kinds of additional classifiers as defined under | ||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
classifier = | ||
Development Status :: 4 - Beta | ||
Programming Language :: Python | ||
|
||
[entry_points] | ||
# Add here console scripts like: | ||
# console_scripts = | ||
# script_name = postgraas_server.module:function | ||
# For example: | ||
# console_scripts = | ||
# fibonacci = postgraas_server.skeleton:run | ||
# as well as other entry_points. | ||
|
||
|
||
[files] | ||
# Add here 'data_files', 'packages' or 'namespace_packages'. | ||
# Additional data files are defined as key value pairs of source and target: | ||
packages = | ||
postgraas_server | ||
# data_files = | ||
# share/postgraas_server_docs = docs/* | ||
|
||
[extras] | ||
# Add here additional requirements for extra features, like: | ||
# PDF = | ||
# ReportLab>=1.2 | ||
# RXP | ||
|
||
[test] | ||
# py.test options when running `python setup.py test` | ||
addopts = tests | ||
|
||
[pytest] | ||
# Options for py.test: | ||
# Specify command line options as you would do when invoking py.test directly. | ||
# e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml | ||
# in order to write a coverage file that can be read by Jenkins. | ||
addopts = | ||
--cov postgraas_server --cov-report term-missing | ||
--verbose | ||
|
||
[aliases] | ||
docs = build_sphinx | ||
|
||
[bdist_wheel] | ||
# Use this option if your package is pure-python | ||
universal = 1 | ||
|
||
[build_sphinx] | ||
source_dir = docs | ||
build_dir = docs/_build | ||
|
||
[pbr] | ||
# Let pbr run sphinx-apidoc | ||
autodoc_tree_index_modules = True | ||
# autodoc_tree_excludes = ... | ||
# Let pbr itself generate the apidoc | ||
# autodoc_index_modules = True | ||
# autodoc_exclude_modules = ... | ||
# Convert warnings to errors | ||
# warnerrors = True | ||
|
||
[devpi:upload] | ||
# Options for the devpi: PyPI server and packaging tool | ||
# VCS export must be deactivated since we are using setuptools-scm | ||
no-vcs = 1 | ||
formats = bdist_wheel |
Oops, something went wrong.