mirror of
https://github.com/beautifier/js-beautify.git
synced 2025-01-31 09:52:17 +00:00
Small style improvement
This commit is contained in:
parent
5f77b15a56
commit
6b54d5a428
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,6 +9,7 @@ python/MANIFEST
|
||||
python/build
|
||||
python/dist
|
||||
python/jsbeautifier.egg-info
|
||||
python/cssbeautifier.egg-info
|
||||
.nvmrc
|
||||
.nvm/
|
||||
|
||||
|
@ -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},
|
||||
|
Loading…
x
Reference in New Issue
Block a user