updated rev. added manifest.

This commit is contained in:
Christopher Pickering 2021-07-12 14:23:20 -05:00
parent 8265814ddc
commit df90902b40
No known key found for this signature in database
GPG key ID: E14DB3B0A0FACF84
5 changed files with 6 additions and 2 deletions

2
MANIFEST.in Normal file
View file

@ -0,0 +1,2 @@
include pyproject.toml
include rules.yaml

View file

@ -18,13 +18,15 @@ def long_description():
setup(
name="djlint",
version="0.0.1",
version="0.0.5",
author="Christopher Pickering",
author_email="cpickering@rhc.net",
description="Django Template Linter",
long_description=long_description(),
long_description_content_type="text/markdown",
url="https://github.com/Riverside-Healthcare/djlint",
include_package_data=True,
package_data={"djlint": ["rules.yaml"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
@ -40,7 +42,7 @@ setup(
},
entry_points={
"console_scripts": [
"djlint=djlint:patched_main",
"djlint=djlint:main",
]
},
)