Skip to content

Commit

Permalink
setup.py: update description and requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
egorf committed Oct 12, 2017
1 parent ec988a6 commit ba839ed
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(
name='wificontrol',
version='0.4.0',
author='Ivan Sapozhkov, Denis Chagin',
author_email='[email protected]',
packages=['wificontrol', 'wificontrol.utils'],
packages=find_packages(exclude=['tests']),
license='BSD-3',
url='https://github.com/emlid/reach-wifi-configurator.git',
description='Module for control WiFi connections with host(AP) and client(WPA) modes.',
install_requires=[
'sysdmanager',
'netifaces'
],
extras_require={
'test': ['pytest', 'pytest-cov'],
},
description='Python API to control WiFi connectivity',
tests_require=['pytest', 'pytest-mock'],
long_description=open('README.md').read()
)

0 comments on commit ba839ed

Please sign in to comment.