-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (40 loc) · 956 Bytes
/
setup.py
File metadata and controls
executable file
·43 lines (40 loc) · 956 Bytes
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
# -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: setup
Description :
Author : chenhao
date: 2021/4/6
-------------------------------------------------
Change Activity:
2021/4/6:
-------------------------------------------------
"""
from setuptools import setup, find_packages
REQUIREMENTS = [
"requests",
"tensorflow",
"fire",
"tqdm",
"tokenizers",
"numpy",
"pydantic",
"jsonpath-ng",
"jieba",
"bert4keras",
"retrying"
]
setup(
name='config_ai',
version='0.0.1',
packages=find_packages(exclude=['tests*']),
package_dir={"": "."},
package_data={},
url='git@github.com:jerrychen1990/ConfigAI.git',
license='MIT',
author='Chen Hao',
author_email='jerrychen1990@gmail.com',
zip_safe=True,
description='write config files for ai model',
install_requires=REQUIREMENTS
)