-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor import statements for consistency and add setup.py for packa…
…ge management
- Loading branch information
1 parent
924d7cd
commit 5a9917f
Showing
3 changed files
with
25 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "collaborative-article-sharing" | ||
version = "0.1.0-beta.5" | ||
version = "0.1.0-beta.6" | ||
description = "Command-line interface for interacting with the CAS API" | ||
authors = [ | ||
{ name = "upayan", email = "[email protected]" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name="cas", | ||
version="1.0.0", | ||
packages=find_packages(), # Automatically find packages | ||
entry_points={ | ||
'console_scripts': [ | ||
'cas=cas.cli:main', # Command name points to main function | ||
], | ||
}, | ||
install_requires=[ | ||
"rich", | ||
], | ||
) |