blob: 68901f30b72b7eebd7a7d6b3dc97b2e1b4ae9326 [file] [log] [blame]
martin f. krafft0eda02e2013-07-03 19:05:34 +02001#
2# -*- coding: utf-8 -*-
3#
4# This file is part of reclass (http://github.com/madduck/reclass)
5#
6# Copyright © 2007–13 martin f. krafft <madduck@madduck.net>
7# Released under the terms of the Artistic Licence 2.0
8#
martin f. krafft51406fb2013-07-04 07:48:44 +02009
10from reclass.version import *
Ollie Walshb029e752013-06-29 14:14:23 +010011from setuptools import setup, find_packages
martin f. krafft51406fb2013-07-04 07:48:44 +020012
Ollie Walshb029e752013-06-29 14:14:23 +010013setup(
martin f. krafft51406fb2013-07-04 07:48:44 +020014 name = RECLASS_NAME,
15 description = DESCRIPTION,
16 version = VERSION,
17 author = AUTHOR,
18 author_email = AUTHOR_EMAIL,
19 license = LICENCE,
20 url = URL,
21 packages = find_packages(),
Ollie Walshb029e752013-06-29 14:14:23 +010022 entry_points = {
23 'console_scripts': ['reclass = reclass.main:run' ],
24 },
25 install_requires = ['pyyaml'],
26 setup_requires = ['nose'],
27)