-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (31 loc) · 871 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
29
30
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
try:
long_description = open('README.rst', 'rt').read()
except IOError:
long_description = ''
setup(
name='docli',
version='1.0',
description='Digital Ocean command line interface',
long_description=long_description,
author='Yogesh Panchal',
author_email='yspanchal@gmail.com',
url='https://github.com/yspanchal/docli',
download_url='https://github.com/yspanchal/docli/tarball/master',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click',
'requests',
'tabulate',
],
entry_points='''
[console_scripts]
docli=docli.main:docli
''',
# classifiers=[
# 'License :: OSI Approved :: Apache Software License',
# 'Programming Language :: Python',
# ],
)