forked from Lasagne/Lasagne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (63 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
65
66
67
import os
import re
from setuptools import find_packages
from setuptools import setup
# We need io.open() (Python 3's default open) to specify file encodings
import io
here = os.path.abspath(os.path.dirname(__file__))
try:
# obtain version string from __init__.py
# Read ASCII file with builtin open() so __version__ is str in Python 2 and 3
with open(os.path.join(here, 'lasagne', '__init__.py'), 'r') as f:
init_py = f.read()
version = re.search('__version__ = "(.*)"', init_py).groups()[0]
except Exception:
version = ''
try:
# obtain long description from README and CHANGES
# Specify encoding to get a unicode type in Python 2 and a str in Python 3
with io.open(os.path.join(here, 'README.rst'), 'r', encoding='utf-8') as f:
README = f.read()
with io.open(os.path.join(here, 'CHANGES.rst'), 'r', encoding='utf-8') as f:
CHANGES = f.read()
except IOError:
README = CHANGES = ''
install_requires = [
'numpy',
# 'Theano', # we require a development version, see requirements.txt
]
tests_require = [
'mock',
'pytest',
'pytest-cov',
'pytest-pep8',
]
setup(
name="Lasagne",
version=version,
description="A lightweight library to build and train neural networks "
"in Theano",
long_description="\n\n".join([README, CHANGES]),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="",
author="Lasagne contributors",
author_email="[email protected]",
url="https://github.com/Lasagne/Lasagne",
license="MIT",
packages=find_packages(),
include_package_data=False,
zip_safe=False,
install_requires=install_requires,
extras_require={
'testing': tests_require,
},
)