-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (23 loc) · 836 Bytes
/
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
#!/usr/bin/python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="python-modemmanager",
version="0.1",
author="Judah Rand",
author_email="[email protected]",
description="Easy communication with ModemManager",
url="http://github.com/JudahRand/python-modemmanager",
license="MIT",
packages=["ModemManager", "ModemManager.Modem"],
install_requires=["pydbus", "datetime"],
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
])