-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.62 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
# -*- coding:utf-8 -*-
from __future__ import print_function
from setuptools import setup, find_packages
from glob import glob
import guang as my_package
with open(glob('requirements.*')[0], encoding='utf-8') as f:
all_reqs = f.read().split('\n')
install_requires = [x.strip() for x in all_reqs]
with open("README.md", "r", encoding='utf-8') as fr:
long_description = fr.read()
setup(name=my_package.__name__,
version=my_package.__version__,
package_data={
'guang': [
'version_config.yaml', 'Utils/date_data',
'Voice/pinyin_to_phone.txt'
],
},
description=" ML/DL tools function library",
long_description=long_description,
long_description_content_type="text/markdown",
author="K.y",
author_email="beidongjiedeguang@gmail.com",
url="https://github.com/beidongjiedeguang/guang",
license="GPL-v3",
install_requires=install_requires,
classifiers=[
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords=[
'Deep Learning', 'Machine Learning', 'Neural Networks',
'Natural Language Processing', 'Computer Vision'
],
entry_points={'console_scripts': ['guang = guang.guang:main']},
packages=find_packages())