-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 975 Bytes
/
setup.py
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
# -*- coding: utf-8 -*-
"""
@Project Name LocalProject
@File Name: darknet_networkx
@Software: PyCharm
@Time: 2020/6/13 10:00
@Author: taosheng
@contact: [email protected]
@version: 1.0
@Description:
"""
from setuptools import setup, find_packages
setup(
name="pytorch_image_debug",
version="0.1.0",
# packages = find_packages(),
py_modules=["pytorch_image_debug"],
# scripts = ["pytorch_image_debug.py"],
install_requires=["numpy", "matplotlib", "Pillow", "torch>=0.3", "torchvision>=0.2"],
package_data={"": ["*.txt", "*.rst"]},
python_requires=">=3", # 指定项目依赖 python版本
zip_safe=False,
author="taoshen",
author_email="langangpaibian.com",
description="pytorch image debug: image preprocess or tensor show as image",
long_description="useful torch tensor debug tool",
keywords=("torch tensor debug", "image preprocess", "image show"),
license="GPL"
)