-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.02 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.02 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
#-*- encoding: UTF-8 -*-
from setuptools import setup, find_packages
import sys, os
"""
python setup.py register sdist bdist_egg upload
python setup.py register sdist upload -r "https://test.pypi.org/legacy/"
pip install -i https://testpypi.python.org/simple/ defogging
"""
VERSION = '0.1.7'
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='defogging',
version=VERSION,
description="Defogging based on Python",
long_description=readme,
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='python image defogging dehaze',
author='scloudyy',
author_email='onecloud.shen@gmail.com',
url='https://github.com/scloudyy/Defogging',
license='GPL',
packages=['defogging', 'defogging/core', 'defogging/utils'],
include_package_data=True,
zip_safe=True,
install_requires=[
'numpy',
'pillow'
],
entry_points={
'console_scripts':[
'defogging = defogging:main'
]
},
)