-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 910 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 910 Bytes
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
from setuptools import setup, find_packages
setup(
name="netcloudapi",
packages=find_packages(),
include_package_data=True,
install_requires=["requests"],
version="0.3-b.1",
author="Anthony Martinez",
author_email="anthony.martinez@gmail.com",
url="https://github.com/anthonyjmartinez/netcloudapi",
description="Python Interface for the Cradlepoint NetCloud API V2",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities"
]
)