-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (41 loc) · 1.45 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
# -*- coding: utf-8 -*-
# Copyright 2019 Vivo Inc. All Rights Reserved.
# @Time : 2019/10/20 8:59 AM
# @Author : ding
# @File : setup.py
# @description :
from setuptools import find_packages, setup
setup(name='bdataset', # 包名
version='0.2.3', # 版本号
description='',
long_description='',
author='zhifeng.ding',
author_email='[email protected]',
url='',
license='',
install_requires=['loguru', 'numpy', 'pillow', 'timer @ git+https://github.com/aidings/timer.git'],
extras_require={},
dependency_links=[
"https://pypi.tuna.tsinghua.edu.cn/simple",
"http://mirrors.aliyun.com/pypi/simple"
],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2'
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities'
],
keywords='',
packages=find_packages('src', exclude=["examples", "tests", "project"]), # 必填
package_dir={'': 'src'}, # 必填
include_package_data=True,
scripts= [
'./scripts/create_indexs'
],
)