-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
51 lines (43 loc) · 1.31 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
# -*- coding: utf-8 -*-
from io import open
from setuptools import setup
"""
:authors: drygdryg
:license: MIT
:copyright: (c) 2020 drygdryg
"""
version = '0.2'
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='wpspin',
version=version,
description='WPS PIN generator written in Python 3',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
author='drygdryg',
author_email='[email protected]',
url='https://github.com/drygdryg/wpspin',
download_url='https://github.com/drygdryg/wpspin/archive/v{}.zip'.format(version),
keywords='wireless wifi wpa wps generator pin code',
packages=['wpspin'],
python_requires='>=3.4',
entry_points={
'console_scripts': [
'wpspin = wpspin.wpspin:main'
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Topic :: Security',
'Topic :: Utilities',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)