-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update setup.py #3
Conversation
author: Specifies the name of the package author. author_email: Specifies the email address of the package author. install_requires: Specifies the dependencies required by the package. Add the necessary dependencies as a list of strings. entry_points: Allows you to define command-line scripts or other entry points for your package. It associates the sgm-cli command with the main() function in the sgm.cli module. package_data: Specifies additional files or data to be included with the package. In this example, it includes all text files in the data directory of the sgm package. license: Specifies the license under which the package is distributed (e.g., "MIT", "Apache License 2.0", etc.). classifiers: Provides classifiers or tags for the package that indicate its properties, target audience, and compatibility. Feel free to modify these fields according to your package's specific requirements.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Filled in values are wrong.
I noticed a small bug in your code. Have you considered using XYZ to fix it? |
The |
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Current README advises "This is tested under python3.8 and python3.10. For other python versions, you might encounter version conflicts."
Repository is now using |
author: Specifies the name of the package author.
author_email: Specifies the email address of the package author. install_requires: Specifies the dependencies required by the package. Add the necessary dependencies as a list of strings. entry_points: Allows you to define command-line scripts or other entry points for your package. It associates the sgm-cli command with the main() function in the sgm.cli module. package_data: Specifies additional files or data to be included with the package. In this example, it includes all text files in the data directory of the sgm package. license: Specifies the license under which the package is distributed (e.g., "MIT", "Apache License 2.0", etc.). classifiers: Provides classifiers or tags for the package that indicate its properties, target audience, and compatibility. Feel free to modify these fields according to your package's specific requirements.