-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (24 loc) · 971 Bytes
/
setup.py
File metadata and controls
24 lines (24 loc) · 971 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
from distutils.core import setup
setup(
name = 'lowendspirit',
packages = ['lowendspirit'], # this must be the same as the name above
version = '0.1',
description = 'Library to call endpoints of API's for CloudFlare, SolusVM and Virtualizor ',
author = 'Damir H.',
license = 'MIT',
author_email = 'info@boxcontrol.net',
url = 'https://github.com/boxcontrol/lowendspirit',
download_url = 'https://github.com/boxcontrol/lowendspirit/tarball/0.1',
keywords = ['virtualizor', 'solusvm', 'lowendspirit', 'cloudflare', 'API', 'enduser'], # arbitrary keywords
classifiers = [
"Development Status :: 3 - Alpha,
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
)