Skip to content

Commit

Permalink
changed comple folder structure of project ot be compliant with pypi …
Browse files Browse the repository at this point in the history
…packaging
  • Loading branch information
ratal committed May 21, 2015
1 parent 0259872 commit 36538de
Show file tree
Hide file tree
Showing 23 changed files with 48 additions and 19 deletions.
4 changes: 2 additions & 2 deletions Makefile → docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ BUILDDIR = build
# Internal variables.
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) ../docs
# the i18n builder cannot share the environment and doctrees with the others
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) ../docs

.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext

Expand Down
6 changes: 3 additions & 3 deletions source/conf.py → docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,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('.'))
sys.path.insert(0, os.path.abspath('../mdfreader'))

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

Expand Down Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '1.1'
version = '1.3'
# The full version, including alpha/beta/rc tags.
release = '1.1'
release = '1.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions mdfconverter/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ----------------------------------------------------------------------
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see http://www.gnu.org/licenses.
#
# ----------------------------------------------------------------------
__version__ = "0.1.3"
File renamed without changes.
File renamed without changes.
File renamed without changes.
23 changes: 10 additions & 13 deletions mdfreader.e4p
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Project SYSTEM "Project-5.1.dtd">
<!-- eric project file for project mdfreader -->
<!-- Saved: 2015-04-10, 01:02:36 -->
<!-- Saved: 2015-05-21, 22:22:18 -->
<!-- Copyright (C) 2015 Aymeric Rateau, aymeric.rateau@gmail.com -->
<Project version="5.1">
<Language>en</Language>
Expand All @@ -14,29 +14,26 @@
<Email>aymeric.rateau@gmail.com</Email>
<Eol index="-1"/>
<Sources>
<Source>mdfreader.py</Source>
<Source>mdfreader/mdfreader.py</Source>
<Source>mdfForVeuszPlugin.py</Source>
<Source>mdfreaderui.py</Source>
<Source>Ui_mdfreaderui.py</Source>
<Source>mdfconverter.py</Source>
<Source>mdfinfo4.py</Source>
<Source>mdfinfo3.py</Source>
<Source>mdfconverter/mdfreaderui.py</Source>
<Source>mdfconverter/Ui_mdfreaderui.py</Source>
<Source>mdfconverter/mdfconverter.py</Source>
<Source>mdfreader/mdfinfo4.py</Source>
<Source>mdfreader/mdfinfo3.py</Source>
<Source>test/test.py</Source>
<Source>mdf3reader.py</Source>
<Source>mdf4reader.py</Source>
<Source>mdfreader/mdf3reader.py</Source>
<Source>mdfreader/mdf4reader.py</Source>
<Source>README</Source>
<Source>LICENSE</Source>
<Source>setup.py</Source>
</Sources>
<Forms>
<Form>mdfreaderui.ui</Form>
</Forms>
<Forms/>
<Translations/>
<Resources/>
<Interfaces/>
<Others>
<Other>.issues</Other>
<Other>doc</Other>
</Others>
<MainScript>mdfconverter.py</MainScript>
<Vcs>
Expand Down
15 changes: 15 additions & 0 deletions mdfreader/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ----------------------------------------------------------------------
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see http://www.gnu.org/licenses.
#
# ----------------------------------------------------------------------
__version__ = "0.1.3"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/development.html#single-sourcing-the-version
version='0.1.2',
version='0.1.3',

description='A Measured Data Format file parser',
long_description=long_description,
Expand Down

0 comments on commit 36538de

Please sign in to comment.