Skip to content

Commit

Permalink
Update to pyscaffold version 2.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mazweg committed Apr 11, 2018
1 parent 7ac4182 commit f52b897
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ v0.2.X
======

- Update readme
- Update to PyScaffold 2.5.9

v0.2.5
======
Expand Down
29 changes: 21 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
name = pygeogrids
summary = Module for creation and handling of discrete global grids
author = TU Wien
author_email = remote.sensing@geo.tuwien.ac.at
author-email = remote.sensing@geo.tuwien.ac.at
license = new-bsd
url = http://rs.geo.tuwien.ac.at
home-page = http://rs.geo.tuwien.ac.at
description-file = README.rst
classifier =
Development Status :: 4 - Beta
Expand All @@ -26,22 +26,36 @@ classifier =
[entry_points]
# Add here console scripts like:
# console_scripts =
# run_my_project = my_project.cli:run
# script_name = pygeogrids
# share/my_project/docs = docs/*.module:function
# For example:
# console_scripts =
# fibonacci = pygeogrids
# share/my_project/docs = docs/*.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:
# Additional data files are defined as key value pairs of target directory
# and source location from the root of the repository:
packages =
pygeogrids
# data_files =
# share/my_project/docs = docs/*
# share/pygeogrids
# share/my_project/docs = docs/*_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]
[tool: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
Expand All @@ -58,7 +72,6 @@ docs = build_sphinx
universal = 1

[build_sphinx]
# Options for Sphinx build
source_dir = docs
build_dir = docs/_build

Expand All @@ -76,4 +89,4 @@ autodoc_tree_index_modules = True
# 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
formats = bdist_wheel
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
Setup file for pygeogrids.
This file was generated with PyScaffold 2.5.3, a tool that easily
This file was generated with PyScaffold 2.5.9, a tool that easily
puts up a scaffold for your new Python project. Learn more under:
http://pyscaffold.readthedocs.org/
"""
Expand Down
13 changes: 13 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Dummy conftest.py for pygeogrids
# share/my_project/docs = docs/*.
If you don't know what this is for, just leave it empty.
Read more about conftest.py under:
https://pytest.org/latest/plugins.html
"""
from __future__ import print_function, absolute_import, division

import pytest

0 comments on commit f52b897

Please sign in to comment.