addressing coding style rules

This commit is contained in:
Benedikt Hegner
2016-05-10 13:17:36 +02:00
parent aca5941a0e
commit ad42579f08
9 changed files with 41 additions and 24 deletions

View File

@@ -1,4 +1,6 @@
from spack import * from spack import version, extends, depends_on, python
from spack import Package
class PyGenshi(Package): class PyGenshi(Package):
"""Python toolkit for generation of output for the web""" """Python toolkit for generation of output for the web"""

View File

@@ -1,4 +1,6 @@
from spack import * from spack import depends_on, extends, python, version
from spack import Package
class PyAstroid(Package): class PyAstroid(Package):
homepage = "https://www.astroid.org/" homepage = "https://www.astroid.org/"

View File

@@ -1,4 +1,6 @@
from spack import * from spack import depends_on, extends, python, version
from spack import Package
class PyJinja2(Package): class PyJinja2(Package):
""" """

View File

@@ -1,4 +1,6 @@
from spack import * from spack import depends_on, extends, python, version
from spack import Package
class PyLogilabCommon(Package): class PyLogilabCommon(Package):
"""Common modules used by Logilab projects""" """Common modules used by Logilab projects"""

View File

@@ -1,4 +1,6 @@
from spack import * from spack import depends_on, extends, python, version
from spack import Package
class PyMarkupsafe(Package): class PyMarkupsafe(Package):
""" """

View File

@@ -1,4 +1,6 @@
from spack import * from spack import depends_on, extends, python, version
from spack import Package
class PyMistune(Package): class PyMistune(Package):
""" """

View File

@@ -1,4 +1,6 @@
from spack import * from spack import depends_on, extends, python, version
from Spack import Package
class PyPrettytable(Package): class PyPrettytable(Package):
""" """

View File

@@ -1,4 +1,6 @@
from spack import * from spack import depends_on, extends, python, version
from spack import Package
class PyPy2neo(Package): class PyPy2neo(Package):
"""FIXME: put a proper description of your package here.""" """FIXME: put a proper description of your package here."""

View File

@@ -1,4 +1,6 @@
from spack import * from spack import depends_on, extends, python, version
from spack import Package
class PyStorm(Package): class PyStorm(Package):
"""Storm is an object-relational mapper (ORM) for Python""" """Storm is an object-relational mapper (ORM) for Python"""
@@ -12,4 +14,3 @@ class PyStorm(Package):
def install(self, spec, prefix): def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix) python('setup.py', 'install', '--prefix=%s' % prefix)