-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (45 loc) · 1.9 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
from setuptools import setup
import os.path
# Pau Aliagas was a major contributor to this effort
# Thanks
__author__ = "Sven Mayer <[email protected]>"
__contributors__ = "Pau Aliagas <[email protected]>; Armand Lynch <[email protected]>"
__copyright__ = "Copyright 2015-2017, Sven Mayer"
__license__ = "LGPL"
__url__ = "https://github.com/SamyStyle/pywurfl/"
__version__ = "7.2.2"
__doc__ = \
"""
pywurfl - Python tools for processing and querying the Wireless Universal Resource File (WURFL)
"""
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
doc = __doc__.strip()
setup (name="pywurfl",
version=__version__,
author="Armand Lynch",
author_email="[email protected]",
contact="Sven Mayer",
contact_email="[email protected]",
license=__license__,
url=__url__,
packages=['pywurfl', 'pywurfl.algorithms', 'pywurfl.algorithms.wurfl'],
scripts=['bin/wurfl2python.py'],
description=doc,
long_description=read('doc/README'),
install_requires=['python-Levenshtein'],
platforms="All",
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database :: Front-Ends',
'Topic :: Internet :: WAP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
])