Skip to content

Commit 1e8499e

Browse files
committed
extra requirements
1 parent dcc9b42 commit 1e8499e

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,6 @@ java_param_sharing_model.h5
7777
temp.h5
7878

7979
docs/sources
80-
docs/site
80+
docs/site
81+
82+
.vscode

setup.py

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,21 @@
99
download_url='https://github.com/maxpumperla/elephas/tarball/0.4',
1010
author='Max Pumperla',
1111
author_email='[email protected]',
12-
install_requires=['cython', 'keras', 'tensorflow', 'hyperas', 'flask', 'six', 'pyspark', 'pydl4j>=0.1.3'],
12+
install_requires=['cython', 'tensorflow', 'keras', 'hyperas', 'flask', 'six', 'pyspark'],
13+
extras_require={
14+
'java': ['pydl4j>=0.1.3'],
15+
'tests': ['pytest', 'pytest-pep8', 'pytest-cov', 'mock']
16+
},
1317
packages=find_packages(),
1418
license='MIT',
15-
zip_safe=False)
19+
zip_safe=False,
20+
classifiers=[
21+
'Development Status :: 3 - Alpha',
22+
'Intended Audience :: Developers',
23+
'Environment :: Console',
24+
'License :: OSI Approved :: Apache Software License',
25+
'Operating System :: OS Independent',
26+
'Programming Language :: Python',
27+
'Programming Language :: Python :: 2',
28+
'Programming Language :: Python :: 3'
29+
])

0 commit comments

Comments
 (0)