-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (38 loc) · 1.16 KB
/
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
35
36
37
38
39
from setuptools import setup, find_packages
setup(
name='metrics-lle', # 包名称,之后如果上传到了pypi,则需要通过该名称下载
version='0.0.1', # version只能是数字,还有其他字符则会报错
keywords=['metric', 'low light enhancement'],
description='Metrics for low light enhancement',
long_description='',
license='MIT', # 遵循的协议
install_requires=[
'numpy',
'pillow',
'scipy',
'lpips',
'filetype',
'opencv-python',
'torch',
'torchvision',
'tqdm',
'scikit-image'
], # 这里面填写项目用到的第三方依赖
dependency_links=[
'http://mirrors.aliyun.com/pypi/simple/',
],
author='BreezeShane, PommesPeter, RuoMengAwA',
author_email='[email protected]',
packages=find_packages(), # 项目内所有自己编写的库
platforms='any',
url='https://github.com/LowLightTeam/Metrics', # 项目链接,
include_package_data=False,
exclude_package_data={
'':['.gitignore',]
},
entry_points={
'console_scripts': [
# 'example=run:main'
]
},
)