From 247d94e0d5b57a117d0a8a15adcf213a36dab450 Mon Sep 17 00:00:00 2001 From: SharathG Date: Mon, 14 Oct 2019 00:36:57 -0500 Subject: [PATCH 1/3] Description modified added few tags related to neural networks --- setup.py | 36 +++++++++++++++--------------------- 1 file changed, 15 insertions(+), 21 deletions(-) diff --git a/setup.py b/setup.py index 881b3b2..93ef501 100644 --- a/setup.py +++ b/setup.py @@ -1,38 +1,32 @@ import setuptools # Required packages -dependencies = [ - "numpy", - "visdom" -] +dependencies = ["numpy", "visdom"] documentation_packages = [ "sphinx", "sphinxcontrib-napoleon", - "sphinxcontrib-programoutput" -] -testing_packages = [ - "pytest", - "coverage" + "sphinxcontrib-programoutput", ] +testing_packages = ["pytest", "coverage"] setuptools.setup( - name='numpynet', - version='0.0.1', - author='Brad Beechler', - author_email='Chronocook@gmail.com', - description='Approachable neural net implementation in pure numpy', - url='https://github.com/UptakeOpenSource/numpynet', + name="numpynet", + version="0.0.1", + author="Brad Beechler", + author_email="Chronocook@gmail.com", + description="Approachable neural net implementation in pure numpy", + url="https://github.com/UptakeOpenSource/numpynet", packages=setuptools.find_packages(), install_requires=dependencies, extras_require={ - 'all': dependencies + documentation_packages, - 'docs': documentation_packages + "all": dependencies + documentation_packages, + "docs": documentation_packages, }, test_suite="tests", zip_safe=False, classifiers=[ - 'Development Status :: 3 - Alpha', - 'Intended Audience :: Education', - 'Programming Language :: Python :: 3 :: Only' - ] + "Development Status :: 3 - Alpha", + "Intended Audience :: Education", + "Programming Language :: Python :: 3 :: Only", + ], ) From ea4bda4e1436cb53c105ad1aae70e6bf40c4e01b Mon Sep 17 00:00:00 2001 From: Sharath Gangalapadu <46713988+SharathGa@users.noreply.github.com> Date: Mon, 14 Oct 2019 01:52:55 -0500 Subject: [PATCH 2/3] update description --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 93ef501..c68cfce 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,8 @@ version="0.0.1", author="Brad Beechler", author_email="Chronocook@gmail.com", - description="Approachable neural net implementation in pure numpy", + description="Approachable neural net implementation in pure numpy","Backward Propogation","Loss Functions","Numpy", + "Feed Forward Networks","Neural Networks","Gradient Descent","Visualization of Neural Networks","Neural Net", url="https://github.com/UptakeOpenSource/numpynet", packages=setuptools.find_packages(), install_requires=dependencies, From 46ff32bf5d424959245407e7d9facadefc4fd642 Mon Sep 17 00:00:00 2001 From: SharathG Date: Wed, 16 Oct 2019 13:21:11 -0500 Subject: [PATCH 3/3] Added long_description new parameter long_description was added so that the package description is verbose and improves the visibility of the project. --- setup.py | 39 ++++++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/setup.py b/setup.py index 93ef501..17a7be7 100644 --- a/setup.py +++ b/setup.py @@ -1,32 +1,41 @@ import setuptools # Required packages -dependencies = ["numpy", "visdom"] +dependencies = [ + "numpy", + "visdom" +] documentation_packages = [ "sphinx", "sphinxcontrib-napoleon", - "sphinxcontrib-programoutput", + "sphinxcontrib-programoutput" +] + +testing_packages = [ + "pytest", + "coverage" ] -testing_packages = ["pytest", "coverage"] setuptools.setup( - name="numpynet", - version="0.0.1", - author="Brad Beechler", - author_email="Chronocook@gmail.com", - description="Approachable neural net implementation in pure numpy", - url="https://github.com/UptakeOpenSource/numpynet", + name='numpynet', + version='0.0.1', + author='Brad Beechler', + author_email='Chronocook@gmail.com', + description='Approachable neural net implementation in pure numpy', + long_description="Backward Propogation","Loss Functions","Feed Forward Networks", + "Gradient descent","Visualization of neural networks","neural net", + url='https://github.com/UptakeOpenSource/numpynet', packages=setuptools.find_packages(), install_requires=dependencies, extras_require={ - "all": dependencies + documentation_packages, - "docs": documentation_packages, + 'all': dependencies + documentation_packages, + 'docs': documentation_packages }, test_suite="tests", zip_safe=False, classifiers=[ - "Development Status :: 3 - Alpha", - "Intended Audience :: Education", - "Programming Language :: Python :: 3 :: Only", - ], + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Education', + 'Programming Language :: Python :: 3 :: Only' + ] )