Skip to content

Commit

Permalink
modify setup.py to publish to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
arrizalamin committed Jan 31, 2018
1 parent dc22fbc commit 48d3b98
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 18 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
23 changes: 5 additions & 18 deletions setup.py
@@ -1,27 +1,14 @@
from setuptools import setup
# from distutils.extension import Extension
# from Cython.Build import cythonize
# import numpy

# extensions = [
# Extension('im2col_cython', ['im2col_cython.pyx'],
# include_dirs=[numpy.get_include()]
# ),
# ]

# setup(
# ext_modules=cythonize(extensions),
# )


setup(name='keris',
version='1.0',
version='0.1',
description='Keras-like deep learning framework built with numpy',
url='https://github.com/arrizalamin/keris',
download_url='https://github.com/arrizalamin/keris/archive/0.1.tar.gz',
author='Arrizal Amin',
author_email='arrizalamin@gmail.com',
license='MIT',
packages=['keris'],
install_requires=['numpy>=1.9.1',
'tqdm'],
zip_safe=False)
keywords=['deep learning', 'keris'],
install_requires=['numpy>=1.13.3',
'tqdm>=4.19.4'])

0 comments on commit 48d3b98

Please sign in to comment.