-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
32 lines (30 loc) · 891 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import setuptools
# Required packages
dependencies = ["numpy", "visdom"]
documentation_packages = [
"sphinx",
"sphinxcontrib-napoleon",
"sphinxcontrib-programoutput",
]
testing_packages = ["pytest", "coverage"]
setuptools.setup(
name="numpynet",
version="0.0.1",
author="Brad Beechler",
author_email="[email protected]",
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,
},
test_suite="tests",
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3 :: Only",
],
)