Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,33 @@
setup(
name="sgm",
version="0.0.1",
author="Your Name",
author_email="your_email@example.com",
packages=find_packages(),
python_requires=">=3.8",
py_modules=["sgm"],
install_requires=[
"dependency1",
"dependency2",
],
entry_points={
"console_scripts": [
"sgm-cli=sgm.cli:main",
],
},
package_data={
"sgm": ["data/*.txt"],
},
description="Stability Generative Models",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/Stability-AI/generative-models",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",

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."

"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)