-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 1.74 KB
/
setup.py
File metadata and controls
51 lines (47 loc) · 1.74 KB
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
46
47
48
49
50
51
from setuptools import find_packages, setup
import codecs
with codecs.open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
REQUIRED_PACKAGES = [
"torch>=1.1.0",
"transformers>=4.0.0",
"scikit-learn",
"tensorboardX"
]
setup(
name="deepclassifier",
version="0.0.6",
author="Zichao Li",
author_email="2843656167@qq.com",
description="DeepClassifier is aimed at building general text classification model library.It's easy and user-friendly to build any text classification task.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/codewithzichao/DeepClassifier",
download_url='https://github.com/codewithzichao/DeepClassifier/tags',
packages=find_packages(
exclude=["tests"]
),
python_requires=">=3.6.0",
install_requires=REQUIRED_PACKAGES,
# extra_require={},
entry_points={},
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license="Apache-2.0",
keywords=[
"text classification", "pytorch", "torch", "NLP", "deep learning", "deepclassifier"
]
)