Small style improvement

This commit is contained in:
Jorengarenar 2020-01-15 02:40:41 +01:00
parent 5f77b15a56
commit 6b54d5a428
2 changed files with 5 additions and 2 deletions

1
.gitignore vendored
View File

@ -9,6 +9,7 @@ python/MANIFEST
python/build
python/dist
python/jsbeautifier.egg-info
python/cssbeautifier.egg-info
.nvmrc
.nvm/

View File

@ -16,7 +16,7 @@ class PyTest(TestCommand):
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = ['--assert=plain'] + [DIR + \
self.pytest_args = ['--assert=plain'] + [DIR +
x for x in os.listdir(DIR) if x.endswith('.py') and x[0] not in '._']
def run_tests(self):
@ -41,7 +41,9 @@ setup(name='cssbeautifier',
packages=['cssbeautifier',
'cssbeautifier.tests', 'cssbeautifier.tests.generated',
'cssbeautifier.css'],
install_requires=["jsbeautifier>=__version__", "six>=1.13.0", "editorconfig>=0.12.2"],
install_requires=["jsbeautifier>=__version__",
"six>=1.13.0",
"editorconfig>=0.12.2"],
license='MIT',
test_suite='pytest.collector',
cmdclass={'test': PyTest},