Skip to content

Commit

Permalink
updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
amaiya committed Apr 10, 2019
1 parent 05f350f commit 6915f8b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
from distutils.core import setup
import setuptools

with open('README.md') as readme_file: readme = readme_file.read()

setup(
name = 'ktrain',
packages = ['ktrain'],
version = '0.1.0',
#packages = ['ktrain'],
packages = setuptools.find_packages(),
version = '0.1.1',
license='MIT',
description = 'ktrain is a lightweight wrapper for Keras to help train neural networks',
long_description = readme,
long_description_content_type = 'text/markdown',
author = 'Arun S. Maiya',
author_email = '[email protected]',
url = 'https://github.com/amaiya/ktrain',
download_url = 'https://github.com/amaiya/ktrain/archive/v0.1.0.tar.gz',
download_url = 'https://github.com/amaiya/ktrain/archive/v0.1.1.tar.gz',
keywords = ['keras', 'deep learning', 'machine learning'],
install_requires=[
'keras >= 2.2.4',
Expand Down

0 comments on commit 6915f8b

Please sign in to comment.