mirror of
https://github.com/Stability-AI/stablediffusion.git
synced 2024-12-22 15:44:58 +00:00
Update package metadata
This commit is contained in:
parent
a436738fc3
commit
324551ad70
2 changed files with 17 additions and 13 deletions
17
pyproject.toml
Normal file
17
pyproject.toml
Normal file
|
@ -0,0 +1,17 @@
|
|||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "stable-diffusion"
|
||||
version = "0.0.1"
|
||||
readme = "README.md"
|
||||
license = "MIT"
|
||||
dependencies = [
|
||||
"numpy",
|
||||
"torch",
|
||||
"tqdm",
|
||||
]
|
||||
|
||||
[tool.hatch.build]
|
||||
dev-mode-dirs = ["."]
|
13
setup.py
13
setup.py
|
@ -1,13 +0,0 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='stable-diffusion',
|
||||
version='0.0.1',
|
||||
description='',
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
'torch',
|
||||
'numpy',
|
||||
'tqdm',
|
||||
],
|
||||
)
|
Loading…
Reference in a new issue