Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 24 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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'
]
)