-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 1.12 KB
/
setup.py
File metadata and controls
43 lines (41 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name="VtPy",
version="1.0.1",
long_description = long_description,
long_description_content_type='text/markdown',
author="powerjsv",
author_email="powerjsv12@gmail.com",
url="https://github.com/powerjsv/jsv_package_test",
install_requires=[
"pip==23.3.1",
"accelerate==0.25.0",
"tqdm==4.66.1",
"transformers==4.36.2",
"diffusers==0.25.0",
"einops==0.7.0",
"bitsandbytes==0.39.0",
"scipy==1.11.1",
"opencv-python",
"transformers",
"huggingface_hub",
"fvcore",
"omegaconf",
"av",
"onnxruntime"
],
packages=find_packages(exclude=[]),
include_package_data=True,
keywords=["vton", "powerjsv", "toy project", "pypi"],
python_requires=">=3.10",
package_data={
'nstm': ['configs/**/*']
},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)