-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply isort and the subset of the flake8 whitespace recommendations w…
…hich I don't hate
- Loading branch information
Showing
7 changed files
with
99 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import sys, os | ||
import os | ||
import sys | ||
|
||
try: | ||
from setuptools import setup | ||
from setuptools import setup | ||
except ImportError: | ||
from distutils.core import setup | ||
from distutils.core import setup | ||
|
||
if sys.version_info < (3,3): | ||
if sys.version_info < (3, 3): | ||
sys.exit("Python 3.3+ is required; you are using %s" % sys.version) | ||
|
||
######################################## | ||
|
@@ -20,20 +22,21 @@ | |
|
||
######################################## | ||
|
||
setup(name="vpn-slice", | ||
version=version_pep, | ||
description=("vpnc-script replacement for easy split-tunnel VPN setup"), | ||
long_description=open('description.rst').read(), | ||
author="Daniel Lenski", | ||
author_email="[email protected]", | ||
extras_require={ | ||
setup( | ||
name="vpn-slice", | ||
version=version_pep, | ||
description=("vpnc-script replacement for easy split-tunnel VPN setup"), | ||
long_description=open('description.rst').read(), | ||
author="Daniel Lenski", | ||
author_email="[email protected]", | ||
extras_require={ | ||
"setproctitle": ["setproctitle"], | ||
"dnspython": ["dnspython"], | ||
}, | ||
install_requires=["setproctitle", "dnspython"], | ||
license='GPL v3 or later', | ||
url="https://github.com/dlenski/vpn-slice", | ||
packages=["vpn_slice"], | ||
include_package_data = True, | ||
entry_points={ 'console_scripts': [ 'vpn-slice=vpn_slice.__main__:main' ] }, | ||
) | ||
}, | ||
install_requires=["setproctitle", "dnspython"], | ||
license='GPL v3 or later', | ||
url="https://github.com/dlenski/vpn-slice", | ||
packages=["vpn_slice"], | ||
include_package_data=True, | ||
entry_points={'console_scripts': ['vpn-slice=vpn_slice.__main__:main']}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.