-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (32 loc) · 1018 Bytes
/
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
# coding=utf8
from setuptools import setup
__author__ = 'hellflame'
setup(
name='iplocate',
version='2.3.0',
keywords=('ip', 'ipv4', 'ipv6', 'location', 'ip2location', 'ip to location'),
description="在终端获取本机或者指定ip地址",
license="MIT",
author='hellflame',
author_email="hellflamedly@gmail.com",
url="https://github.com/hellflame/iplocate",
packages=['IpLocate'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'
],
platforms="any",
entry_points={
'console_scripts': [
'iplocate=IpLocate.run:main'
]
}
)