setup.py 1.56 KB
Newer Older
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
"""
William Tisäter committed
4
Copyright (c) 2010-2014 Jennifer Ennis, William Tisäter.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/lgpl.txt>.
"""

try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup

MrTux committed
25
from pygeoip import __version__
26 27

setup(name='pygeoip',
MrTux committed
28
      version=__version__,
29 30 31
      description='Pure Python GeoIP API',
      author='Jennifer Ennis',
      author_email='zaylea@gmail.com',
32 33
      maintainer='William Tisäter',
      maintainer_email='william@defunct.cc',
34 35
      url='https://github.com/appliedsec/pygeoip',
      classifiers=['Programming Language :: Python',
36 37 38
                   'Programming Language :: Python :: 2.6',
                   'Programming Language :: Python :: 2.7',
                   'Programming Language :: Python :: 3',
39 40
                   'Programming Language :: Python :: 3.2',
                   'Programming Language :: Python :: 3.3'],
41
      packages=['pygeoip'],
42
      license='LGPLv3+',
43
      keywords='geoip')