forked from schuay/mkwvconf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.15 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.15 KB
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='clemens.wolff+pypi@gmail.com',
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='>=3.12',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Utilities'
])