forked from koalalorenzo/python-digitalocean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 903 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
26
27
28
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
long_description = """This library provides easy access to Digital Ocean APIs to deploy droplets, images and more."""
if os.path.isfile("DESCRIPTION.rst"):
with open('DESCRIPTION.rst') as file:
long_description = file.read()
setup(
name='python-digitalocean',
version='1.17.0',
description='digitalocean.com API to manage Droplets and Images',
author='Lorenzo Setale ( http://who.is.lorenzo.setale.me/? )',
author_email='[email protected]',
url='https://github.com/koalalorenzo/python-digitalocean',
packages=['digitalocean'],
install_requires=['requests', 'jsonpickle'],
test_suite='digitalocean.tests',
license='LGPL v3',
long_description=long_description
)