-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (50 loc) · 1.73 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
#! -*- coding: utf-8 -*-
"""
imread evaluation
"""
from setuptools import setup
import io
import setuptools
with io.open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(name='imreadeval',
version='0.2.2',
description='An evaluation to python imread functions',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Natural Language :: Chinese (Simplified)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
url='http://github.com/quxiaofeng/imreadeval',
author='QU Xiaofeng',
author_email='[email protected]',
install_requires=[
'Pillow',
'pytest'
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
license='MIT license, Copyright (c) 2018 QU Xiaofeng',
packages=setuptools.find_packages(exclude=['tests', '.gitignore', 'packaging.sh']),
package_data = {
'': ['*.jpeg', '*.jpg', '*.png', 'images/*']
},
include_package_data=True,
zip_safe=False
)