mirror of
https://github.com/beautifier/js-beautify.git
synced 2025-02-18 12:19:40 +00:00
![Colin Watson](/assets/img/avatar_default.png)
`make pytest` already runs a superset of all the tests run by `python3 setup-css.py test` and `python3 setup-js.py test`. (The former didn't work anyway due to a typo.) Fixes: #2300, #2301
32 lines
913 B
Python
Executable File
32 lines
913 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
from jsbeautifier.__version__ import __version__
|
|
|
|
|
|
setup(
|
|
name="jsbeautifier",
|
|
version=__version__,
|
|
description="JavaScript unobfuscator and beautifier.",
|
|
long_description=(
|
|
"Beautify, unpack or deobfuscate JavaScript. "
|
|
"Handles popular online obfuscators."
|
|
),
|
|
author="Liam Newman, Einar Lielmanis, et al.",
|
|
author_email="team@beautifier.io",
|
|
url="https://beautifier.io",
|
|
entry_points={"console_scripts": ["js-beautify = jsbeautifier:main"]},
|
|
packages=[
|
|
"jsbeautifier",
|
|
"jsbeautifier.tests",
|
|
"jsbeautifier.tests.generated",
|
|
"jsbeautifier.core",
|
|
"jsbeautifier.cli",
|
|
"jsbeautifier.javascript",
|
|
"jsbeautifier.unpackers",
|
|
"jsbeautifier.unpackers.tests",
|
|
],
|
|
install_requires=["six>=1.13.0", "editorconfig>=0.12.2"],
|
|
license="MIT",
|
|
)
|