-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 903 Bytes
/
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
# -*- coding: utf-8 -*-
# file: setup.py
# time: 2021/4/22 0022
# author: yangheng <yangheng@m.scnu.edu.cn>
# github: https://github.com/yangheng95
# Copyright (C) 2021. All Rights Reserved.
from findfile import __version__, __name__
from setuptools import setup, find_packages
setup(
name=__name__,
version=__version__,
description="This package provides the function to search target file(s)/dir(s) using keyword,"
" alleviating the possibility of failure to find files by specifying relative/absolute path",
url="https://github.com/yangheng95/findfile",
# Author details
author="Yang Heng",
author_email="yangheng@m.scnu.edu.cn",
python_requires=">=3.6",
packages=find_packages(),
include_package_data=True,
exclude_package_date={"": [".gitignore"]},
# Choose your license
license="MIT",
install_requires=[
"termcolor",
],
)