-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
33 lines (31 loc) · 1.03 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
# coding=utf-8
from setuptools import setup
setup(
name='ipip-ipdb',
version="1.6.0",
description=(
'IPIP.net officially supported IP database ipdb format parsing library'
),
author='IPIP.net',
author_email='[email protected]',
maintainer='frk',
maintainer_email='[email protected]',
license='Apache License Version 2.0',
packages=['ipdb'],
platforms=["all"],
url='https://github.com/ipipdotnet/ipdb-python',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
],
)