Skip to content

Commit

Permalink
Release version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simo5 committed Aug 1, 2015
1 parent e749f6e commit d0e0407
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,3 @@
include *py *.md *.txt *.ini .coveragerc
recursive-include examples *.key *.db
recursive-include docs *.py *.rst
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -6,14 +6,15 @@

setup(
name = 'custodia',
version = '0.0.1',
version = '0.1.0',
license = 'GPLv3+',
maintainer = 'Custodia project Contributors',
maintainer_email = 'simo@redhat.com',
url='https://github.com/simo5/custodia',
packages = ['custodia', 'custodia.httpd', 'custodia.store'],
packages = ['custodia', 'custodia.httpd', 'custodia.store',
'custodia.message', 'tests'],
data_files = [('share/man/man7', ["man/custodia.7"]),
('share/doc/custodia', ['LICENSE', 'README']),
('share/doc/custodia', ['LICENSE', 'README', 'API.md']),
('share/doc/custodia/examples', ['custodia.conf']),
],
scripts = ['custodia/custodia']
Expand Down
1 change: 0 additions & 1 deletion tests/custodia.py
Expand Up @@ -4,7 +4,6 @@
from tests.client import LocalConnection
import json
import os
import signal
import subprocess
import time
import unittest
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Expand Up @@ -50,6 +50,7 @@ commands =
sphinx-build -v -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html

[pytest]
norecursedirs = build .tox
python_files = tests/*.py custodia/*.py

[flake8]
Expand Down

0 comments on commit d0e0407

Please sign in to comment.