-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
setup.py
58 lines (48 loc) · 1.65 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
import io
import os
import numpy
from setuptools import Extension
from setuptools import setup, find_packages
from os import path
__author__ = 'Kamran Kowsari'
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='RMDL',
version='1.0.8',
description='RMDL: Random Multimodel Deep Learning for Classification',
long_description=readfile('README.rst'),
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.4',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Text Editors :: Text Processing',
],
url='https://github.com/kk7nc/RMDL',
author='Kamran Kowsari',
author_email='[email protected]',
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'
],
packages=find_packages()
)