-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.59 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
#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
# Copyright (C) 2013-18 Dr. Ralf Schlatterbeck Open Source Consulting.
# Reichergasse 131, A-3411 Weidling.
# Web: http://www.runtux.com Email: [email protected]
# All rights reserved
# #*** <License> ************************************************************#
# This module is licensed under the terms of the BSD 3-Clause License
# <http://www.c-tanzer.at/license/bsd_3c.html>.
# #*** </License> ***********************************************************#
# ****************************************************************************
try :
from ff_olsr.Version import VERSION
except :
VERSION = None
from distutils.core import setup
description = []
f = open ('README.rst')
for line in f :
description.append (line)
license = 'BSD License'
rq = '>=2.7, <3'
setup \
( name = "ff-olsr"
, version = VERSION
, description = "Spider for wireless community network"
, long_description = ''.join (description)
, license = license
, author = "Ralf Schlatterbeck"
, author_email = "[email protected]"
, packages = ['ff_olsr']
, platforms = 'Any'
, python_requires = rq
, classifiers = \
[ 'Development Status :: 5 - Production/Stable'
, 'License :: OSI Approved :: ' + license
, 'Operating System :: OS Independent'
, 'Programming Language :: Python'
, 'Intended Audience :: Developers'
, 'Programming Language :: Python :: 2'
, 'Programming Language :: Python :: 2.7'
]
)