Skip to content

Commit

Permalink
Include package data in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonxslays committed Apr 5, 2022
1 parent 2a95132 commit c806f79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion len8/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
]

__productname__ = "len8"
__version__ = "0.7.3"
__version__ = "0.7.3.post0"
__description__ = "A utility for keeping line lengths within PEP 8 standards."
__url__ = "https://github.com/parafoxia/len8"
__docs__ = "https://len8.readthedocs.io/en/latest/"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,6 @@ def parse_requirements(path: str) -> t.List[str]:
install_requires=parse_requirements("./requirements.txt"),
entry_points={"console_scripts": ["len8 = len8.cli:len8"]},
python_requires=">=3.6.0,<3.12",
include_package_data=True,
packages=setuptools.find_packages(),
)

0 comments on commit c806f79

Please sign in to comment.