Make gerber.render a package & fix more relative import statements

This commit is contained in:
Philipp Klaus 2015-02-18 15:35:01 +01:00
parent 0e98a3f0d4
commit 7ace94b023
6 changed files with 7 additions and 7 deletions

View file

@ -16,9 +16,9 @@
# the License.
if __name__ == '__main__':
from .common import read
from .render import GerberSvgContext
import sys
from gerber.common import read
from gerber.render import GerberSvgContext
if len(sys.argv) < 2:
print >> sys.stderr, "Usage: python -m gerber <filename> <filename>..."

View file

@ -4,7 +4,7 @@
# Author: Hamilton Kibbe <ham@hamiltonkib.be>
from ..cam import CamFile, FileSettings
from tests import *
from .tests import *
def test_filesettings_defaults():

View file

@ -5,7 +5,7 @@
from ..common import read
from ..excellon import ExcellonFile
from ..rs274x import GerberFile
from tests import *
from .tests import *
import os

View file

@ -3,7 +3,7 @@
# Author: Hamilton Kibbe <ham@hamiltonkib.be>
from ..primitives import *
from tests import *
from .tests import *
def test_primitive_implementation_warning():

View file

@ -5,7 +5,7 @@
import os
from ..rs274x import read, GerberFile
from tests import *
from .tests import *
TOP_COPPER_FILE = os.path.join(os.path.dirname(__file__),

View file

@ -29,7 +29,7 @@ METADATA = {
'license': "Apache",
'keywords': "gerber tools",
'url': "http://github.com/curtacircuitos/gerber-tools",
'packages': ['gerber'],
'packages': ['gerber', 'gerber.render'],
'long_description': read('README.md'),
'classifiers':[
"Development Status :: 3 - Alpha",