Skip to content

Commit

Permalink
Apply formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Jan 12, 2020
1 parent 3625159 commit 408d7bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
11 changes: 3 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ def get_release_command_class():
name=MODULE_NAME,
version=pkg_info["__version__"],
url=REPOSITORY_URL,

author=pkg_info["__author__"],
author_email=pkg_info["__email__"],
description="tblfaker is a Python library to generate fake tabular data.",
Expand All @@ -61,11 +60,7 @@ def get_release_command_class():
long_description=LONG_DESCRIPTION,
long_description_content_type="text/x-rst",
packages=setuptools.find_packages(exclude=["test*"]),
project_urls={
"Source": REPOSITORY_URL,
"Tracker": "{:s}/issues".format(REPOSITORY_URL),
},

project_urls={"Source": REPOSITORY_URL, "Tracker": "{:s}/issues".format(REPOSITORY_URL)},
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
install_requires=SETUPTOOLS_REQUIRES + INSTALL_REQUIRES,
setup_requires=SETUPTOOLS_REQUIRES + PYTEST_RUNNER_REQUIRES,
Expand All @@ -74,7 +69,6 @@ def get_release_command_class():
"dev": ["releasecmd>=0.2.0,<1", "twine", "wheel"] + TESTS_REQUIRES,
"test": TESTS_REQUIRES,
},

classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand All @@ -92,4 +86,5 @@ def get_release_command_class():
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
],
cmdclass=cmdclass)
cmdclass=cmdclass,
)
1 change: 1 addition & 0 deletions test/test_faker.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import pytest
from faker import Factory

from tblfaker import get_locals, get_providers


Expand Down
1 change: 1 addition & 0 deletions test/test_tblfaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import six # noqa
from pytablewriter import dumps_tabledata
from tabledata import TableData

from tblfaker import TableFaker

from ._common import print_test_result
Expand Down

0 comments on commit 408d7bd

Please sign in to comment.