Skip to content

Commit

Permalink
find packages has an option.
Browse files Browse the repository at this point in the history
  • Loading branch information
lionsardesai committed Apr 15, 2022
1 parent 3e44b5c commit 81bc54e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,14 @@ def version(path):
url=URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
classifiers=["Development Status :: 2 - Pre-Alpha"],
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
packages=find_packages(exclude=["tests", "tests.*"]),
# https://python-packaging.readthedocs.io/en/latest/command-line-scripts.html#the-console-scripts-entry-point
entry_points={"console_scripts": ["lineapy=lineapy.cli.cli:linea_cli"]},
python_requires=">=3.7",
Expand Down

0 comments on commit 81bc54e

Please sign in to comment.