Update package metadata

This commit is contained in:
Ofek Lev 2022-11-24 21:07:21 -05:00
parent a436738fc3
commit 324551ad70
2 changed files with 17 additions and 13 deletions

17
pyproject.toml Normal file
View 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 = ["."]

View file

@ -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',
],
)