File tree 2 files changed +11
-28
lines changed
2 files changed +11
-28
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " invokeai-python"
7
- version = " 0.2.1 "
7
+ version = " 0.2.2 "
8
8
description = " InvokeAI API package"
9
9
readme = " README.md"
10
10
license = { text = " MIT" }
@@ -13,9 +13,14 @@ authors = [
13
13
]
14
14
requires-python = " >=3.6"
15
15
dependencies = [
16
- " aiohttp==3.11.11" ,
17
- " pydantic==2.10.5" ,
16
+ " aiohttp>=3.0.0" ,
17
+ " pydantic>=2.0.0" ,
18
+ ]
19
+ classifiers = [
20
+ " Programming Language :: Python :: 3" ,
21
+ " License :: OSI Approved :: MIT License" ,
22
+ " Operating System :: OS Independent" ,
18
23
]
19
24
20
25
[project .urls ]
21
- Home = " https://github.com/veydlin/invokeai-python"
26
+ Home = " https://github.com/veydlin/invokeai-python"
Original file line number Diff line number Diff line change 1
- # Path: setup.py
2
- from setuptools import setup , find_packages
1
+ from setuptools import setup
3
2
4
- setup (
5
- name = "invokeai-python" ,
6
- version = "0.2.1" ,
7
- description = "InvokeAI API package" ,
8
- long_description = open ("README.md" ).read (),
9
- long_description_content_type = "text/markdown" ,
10
- author = "Kyle Nekto" ,
11
-
12
- url = "https://github.com/veydlin/invokeai-python" ,
13
- license = "MIT" ,
14
- packages = find_packages (),
15
- install_requires = [
16
- "aiohttp==3.11.11" ,
17
- "pydantic==2.10.5" ,
18
- ],
19
- classifiers = [
20
- "Programming Language :: Python :: 3" ,
21
- "License :: OSI Approved :: MIT License" ,
22
- "Operating System :: OS Independent" ,
23
- ],
24
- python_requires = ">=3.6" ,
25
- )
3
+ setup ()
You can’t perform that action at this time.
0 commit comments