-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
51 lines (46 loc) · 1.52 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
#!/usr/bin/env python
# coding: utf8
import codecs
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.rst'), 'r', encoding='utf8') as f:
readme = f.read()
setup(
name='ng',
version='1.2.0',
keywords=['wifi', 'password', 'ip'],
description="Get password of the wifi you're connected, and your current ip address.",
long_description=readme,
author='cls1991',
author_email='tzk19910406@hotmail.com',
url='https://github.com/cls1991/ng',
py_modules=['ng'],
install_requires=[
'click>=6.7',
'requests>=2.18.4',
'pytest>=3.3.1'
],
license='Apache License 2.0',
zip_safe=False,
platforms='any',
entry_points={
'console_scripts': ['ng = ng:cli']
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent'
]
)