forked from schuay/mkwvconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.18 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
from setuptools import setup
with open('version.txt') as fobj:
version = fobj.read().strip()
with open('README.rst') as fobj:
long_description = fobj.read().strip()
setup(
name='mkwvconf',
version=version,
author='Clemens Wolff',
author_email='[email protected]',
packages=['mkwvconf'],
url='https://github.com/ascoderu/mkwvconf',
download_url='https://pypi.python.org/pypi/mkwvconf',
entry_points={
'console_scripts': [
'mkwvconf = mkwvconf.mkwvconf:cli',
],
},
license='Apache Software License',
description=('Automatically generate a wvdial configuration for mobile '
'broadband devices using mobile-broadband-provider-info'),
long_description=long_description,
python_requires='>=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities'
])