forked from mindspore-lab/mindcv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.27 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
#!/usr/bin/env python
from setuptools import setup, find_packages
exec(open('mindcv/version.py').read())
setup(
name="mindcv",
author="MindSpore Ecosystem",
author_email='[email protected]',
url="https://github.com/mindspore-lab/mindcv",
project_urls={
'Sources': 'https://github.com/mindspore-lab/mindcv',
'Issue Tracker': 'https://github.com/mindspore-lab/mindcv/issues',
},
description="A toolbox of vision models and algorithms based on MindSpore.",
license="Apache Software License 2.0",
include_package_data=True,
packages=find_packages(include=['mindcv', 'mindcv.*']),
install_requires=[
'numpy >= 1.17.0',
'PyYAML >= 5.3',
'tqdm'
],
python_requires='>=3.7',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
test_suite='tests',
tests_require=[
'pytest',
],
version=__version__,
zip_safe=False
)