forked from rasbt/deep-learning-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.36 KB
/
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
33
34
35
import ann
from setuptools import setup, find_packages
VERSION = ann.__version__
setup(
name="ann",
version=VERSION,
packages=find_packages(),
install_requires=['numpy>=1.10.4'],
extras_require={'testing': ['nose']},
author="Sebastian Raschka",
author_email="[email protected]",
description=("Supporting package for the book "
"'Introduction to Artificial Neural Networks "
"and Deep Learning: "
"A Practical Guide with Applications in Python'"),
license="MIT",
keywords=["artificial neural networks", "deep learning",
"machine learning", "artificial intelligence", "data science"],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Image Recognition',
],
url="https://github.com/rasbt/deep-learning-book")