Skip to content

Commit

Permalink
moved library to pypi friendly folder
Browse files Browse the repository at this point in the history
  • Loading branch information
diafygi committed Mar 20, 2016
1 parent 1cfb655 commit ad99c25
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath('../src'))
sys.path.insert(0, os.path.abspath('../pdfformfiller'))

# -- General configuration ------------------------------------------------

Expand Down
2 changes: 2 additions & 0 deletions pdfformfiller/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from .pdfformfiller import PdfFormFiller
__all__ = ["PdfFormFiller"]
File renamed without changes.
Empty file removed src/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from tempfile import NamedTemporaryFile
from reportlab.lib.styles import ParagraphStyle

from src.pdfformfiller import PdfFormFiller
from pdfformfiller import PdfFormFiller

class TestPdfFormFiller(unittest.TestCase):
""" Tests for PdfFormFiller """
Expand Down

0 comments on commit ad99c25

Please sign in to comment.