-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathsetup.py
65 lines (55 loc) · 2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
RMDL: Random Multimodel Deep Learning for Classification
* Copyright (C) 2018 Kamran Kowsari <kk7nc@virginia.edu>
* Last Update: Oct 26, 2018
* This file is part of HDLTex project, University of Virginia.
* Free to use, change, share and distribute source code of RMDL
* Refrenced paper : HDLTex: Hierarchical Deep Learning for Text Classification
* Link: https://doi.org/10.1109/ICMLA.2017.0-134
* Comments and Error: email: kk7nc@virginia.edu
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
import io
import os
import numpy
from setuptools import Extension
from setuptools import setup, find_packages
__author__ = 'Kamran Kowsari <kowsari.net>'
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
def readfile(file):
with open(path.join(here, file)) as f:
long_description = f.read()
return long_description
setup(
name='HDLTex',
version='1.0.5',
description='HDLTex: Hierarchical Deep Learning for Text Classification',
long_description=readfile('README.rst'),
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Linguistic',
],
url='https://github.com/kk7nc/HDLTex',
author='Kamran Kowsari',
author_email='kk7nc@virginia.edu',
packages=['HDLTex'] + find_packages('HDLTex'),
install_requires=[
'matplotlib>=2.1.2',
'numpy>=1.12.1',
'pandas>=0.22.0',
'scipy',
'tensorflow',
'keras>=2.0.9',
'scikit-learn>=0.19.0',
'nltk>=3.2.4'
],
include_package_data=False
)