-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
55 lines (40 loc) · 1.46 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import deepy
import sys, os
if sys.version_info[:2] < (2, 6):
raise Exception('This version needs Python 2.6 or later. ')
from setuptools import setup, find_packages
requirements = ["numpy", "theano", "scipy"]
setup(
name='deepy',
version=deepy.__version__,
description='Highly extensible deep learning framework based on Theano',
author='Raphael Shu',
author_email='[email protected]',
url='https://github.com/uaca/deepy',
download_url='http://pypi.python.org/pypi/deepy',
keywords=' Deep learning '
' Neural network '
' Natural language processing ',
license='MIT',
platforms='any',
packages=filter(lambda s: "secret" not in s, find_packages()),
classifiers=[ # from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Linguistic',
],
setup_requires = requirements,
install_requires=requirements,
extras_require={
},
include_package_data=True,
)