diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..224a779 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index b722a63..d710698 100755 --- a/setup.py +++ b/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'])