forked from maxmind/geoip-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.26 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
import multiprocessing, sys
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
libs = ['GeoIP']
if sys.platform == 'win32':
libs.append('ws2_32')
module1 = Extension('GeoIP',
libraries=libs,
sources=['py_GeoIP.c'])
setup(
name='GeoIP',
version='1.2.9',
description='MaxMind GeoIP Legacy Extension',
long_description=open('README.rst').read(),
author="MaxMind, Inc.",
author_email="[email protected]",
url='http://www.maxmind.com/',
bugtrack_url='https://github.com/maxmind/geoip-api-python/issues',
license=open('LICENSE').read(),
ext_modules=[module1],
tests_require=['nose'],
test_suite='nose.collector',
classifiers=(
'Development Status :: 6 - Mature',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python',
'Topic :: Internet :: Proxy Servers',
'Topic :: Internet',
),
)