-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
39 lines (36 loc) · 1.17 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
# coding=utf-8
import os
from setuptools import setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open('README.rst') as readme_file:
long_description = readme_file.read()
setup(
name='keras2pmml',
version='0.1.0',
packages=['keras2pmml'],
include_package_data=True,
license='MIT',
description='Simple exporter of Keras models into PMML',
long_description=long_description,
url='https://github.com/vaclavcadek/keras2pmml',
author='Václav Čadek',
author_email='[email protected]',
install_requires=[
'numpy>=1.6.1',
'SciPy>= 0.9',
'theano>=0.8.2',
'keras>=1.0.6',
'scikit-learn>=0.18'
],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)