-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (49 loc) · 1.81 KB
/
setup.py
File metadata and controls
55 lines (49 loc) · 1.81 KB
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 -*-
#-------------------------------------------------------------------------------
# Name: setup.py
# Purpose: install
#
# Authors: Matthias Dorfer
#
# License: LGPL or BSD
#-------------------------------------------------------------------------------
#import os
from setuptools import setup, find_packages
from lasagne_wrapper import __version__
version = __version__ # @UndefinedVariable
DESCRIPTION = 'A Toolkit for training and applying lasagne networks.'
DESCRIPTION_LONG = """A Toolkit for training and applying lasagne networks."""
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Artistic Software',
'Topic :: Software Development :: Libraries :: Python Modules',
]
if __name__ == '__main__':
setup(
name='lasagne_wrapper',
version=version,
description=DESCRIPTION,
long_description=DESCRIPTION_LONG,
author='Matthias Dorfer',
author_email='matthias.dorfer@jku.at',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
)
#------------------------------------------------------------------------------
# eof