Skip to content

Commit a763b90

Browse files
committed
missing commit
1 parent 150f6f8 commit a763b90

File tree

2 files changed

+27
-30
lines changed

2 files changed

+27
-30
lines changed

setup.py

Lines changed: 25 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,45 @@
11
from setuptools import find_packages
22
from setuptools import setup
3+
34
import os
45

56

6-
version = '2.0.0.dev0'
7-
shortdesc = 'Bootstrap Styles for YAFOWIL'
8-
longdesc = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
9-
longdesc += open(os.path.join(os.path.dirname(__file__), 'CHANGES.rst')).read()
10-
longdesc += open(os.path.join(os.path.dirname(__file__), 'LICENSE.rst')).read()
11-
tests_require = ['yafowil[test]']
7+
version = "2.0.0.dev0"
8+
shortdesc = "Bootstrap Styles for YAFOWIL"
9+
longdesc = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
10+
longdesc += open(os.path.join(os.path.dirname(__file__), "CHANGES.rst")).read()
11+
longdesc += open(os.path.join(os.path.dirname(__file__), "LICENSE.rst")).read()
12+
tests_require = ["yafowil[test]"]
1213

1314

1415
setup(
15-
name='yafowil.bootstrap',
16+
name="yafowil.bootstrap",
1617
version=version,
1718
description=shortdesc,
1819
long_description=longdesc,
1920
classifiers=[
20-
'Environment :: Web Environment',
21-
'Operating System :: OS Independent',
22-
'Programming Language :: Python',
23-
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
24-
'License :: OSI Approved :: BSD License',
21+
"Environment :: Web Environment",
22+
"Operating System :: OS Independent",
23+
"Programming Language :: Python",
24+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
25+
"License :: OSI Approved :: BSD License",
2526
],
26-
keywords='',
27-
author='BlueDynamics Alliance',
28-
author_email='[email protected]',
29-
url=u'https://github.com/bluedynamics/yafowil.bootstrap',
30-
license='Simplified BSD',
31-
packages=find_packages('src'),
32-
package_dir = {'': 'src'},
33-
namespace_packages=['yafowil'],
27+
keywords="",
28+
author="BlueDynamics Alliance",
29+
author_email="[email protected]",
30+
url=u"https://github.com/bluedynamics/yafowil.bootstrap",
31+
license="Simplified BSD",
32+
packages=find_packages("src"),
33+
package_dir={"": "src"},
34+
namespace_packages=["yafowil"],
3435
include_package_data=True,
3536
zip_safe=False,
36-
install_requires=[
37-
'setuptools',
38-
'yafowil>2.2.99',
39-
],
37+
install_requires=["setuptools", "yafowil>2.2.99",],
4038
tests_require=tests_require,
41-
extras_require = dict(
42-
test=tests_require,
43-
),
39+
extras_require=dict(test=tests_require,),
4440
test_suite="yafowil.bootstrap.tests.test_suite",
4541
entry_points="""
4642
[yafowil.plugin]
4743
register = yafowil.bootstrap:register
48-
""")
44+
""",
45+
)

src/yafowil/bootstrap/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
from . import bs3
2+
from . import bs4
13
from yafowil.base import factory
24
from yafowil.utils import entry_point
35

4-
import bs3
5-
import bs4
66
import os
77

88

0 commit comments

Comments
 (0)