-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
37 lines (35 loc) · 1.42 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
36
37
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='yann',
version='1.0rc1',
description='Toolbox for building and learning convolutional neural networks',
long_description=long_description,
url='https://github.com/ragavvenkatesan/yann',
author='Ragav Venkatesan',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Students, Researchers and Developers',
'Topic :: Scientific/Engineering :: Computer Vision :: Deep Learning'
'License :: MIT License',
'Programming Language :: Python :: 2.7 :: Python 3.x',
],
keywords='convolutional neural networks deep learning',
packages=find_packages(exclude=['docs', 'tests', 'pantry']),
install_requires=['theano','numpy','scipy','skdata','progressbar','pillow','matplotlib',
'networkx'],
extras_require={
'dev': ['sphinx', 'sphinx_rtd_theme', 'pydot',
'pydot-ng','graphviz'],
'test': ['mock','pytest-cov','pytest-pep8','pytest'],
},
# data_files=['_datasets/'],
setup_requires=[],
tests_require=['pytest', 'pytest-runner','pytest', 'pytest-runner', 'coverage', 'codecov'],
)