Skip to content

Commit

Permalink
renamed to hestiaapi
Browse files Browse the repository at this point in the history
  • Loading branch information
lukesmith committed Aug 19, 2015
1 parent f50dc30 commit c057e81
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
1 change: 0 additions & 1 deletion hestia/_version.py

This file was deleted.

File renamed without changes.
1 change: 1 addition & 0 deletions hestiaapi/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.0.9'
File renamed without changes.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ def read(fname):
if l and not l.startswith('#')]

setup(
name='hestia-api',
version=open("hestia/_version.py").readlines()[-1].split()[-1].strip("\"'"),
name='hestiaapi',
version=open("hestiaapi/_version.py").readlines()[-1].split()[-1].strip("\"'"),
description='Python library for accessing the hestia.io API',
author_email='info@hestia.io',
author='hestia.io',
url='https://www.hestia.io',

download_url='https://github.com/hestiaio/hestia-python-api/tarball/0.0.1',

packages=['hestia'],
packages=['hestiaapi'],

install_requires=install_requires,
)
2 changes: 1 addition & 1 deletion tests/helpers/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from sys import version_info
import io
import hestia.api
import hestiaapi

try:
from unittest.mock import patch
Expand Down
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from hestia.api import HestiaApi
from hestiaapi.api import HestiaApi
import unittest
import httpretty

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ envlist =
[testenv]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
commands =
nosetests --cover-erase --with-coverage --cover-xml --cover-xml-file=output/coverage/{envname}.xml --cover-html --cover-html-dir=output/coverage/{envname} --cover-package=hestia
nosetests --cover-erase --with-coverage --cover-xml --cover-xml-file=output/coverage/{envname}.xml --cover-html --cover-html-dir=output/coverage/{envname} --cover-package=hestiaapi
coveralls
deps =
-r{toxinidir}/dev-requirements.txt
Expand Down

0 comments on commit c057e81

Please sign in to comment.