forked from cls1991/ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.4 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
#!/usr/bin/env python
# coding: utf8
from setuptools import setup
with open('README.rst', 'r') as f:
readme = f.read()
setup(
name='ng',
version='1.0.2',
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='[email protected]',
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'
]
)