forked from erikns/yucc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1 KB
/
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
# -*- coding: utf-8 -*-
from codecs import open
from os.path import abspath, dirname, join
from subprocess import call
from setuptools import Command, find_packages, setup
from yucc import __version__, __prog__
this_dir = abspath(dirname(__file__))
with open(join(this_dir, 'README.rst'), encoding='utf-8') as file:
long_description = file.read()
setup(
name = __prog__,
version = __version__,
description = 'CLI for UpCloud public cloud service',
long_description = long_description,
home_page = 'https://github.com/erikns/yucc',
author = 'Erik Sørensen',
author_email = '[email protected]',
license = 'MIT',
classifiers = [
],
keywords = 'cli upcloud',
packages = find_packages(exclude=['docs', 'tests*']),
install_requires = ['upcloud-api', 'colorama', 'docopt', 'configparser', 'six'],
extras_require = {
'dev': ['flake8', 'flake8-colors']
},
entry_points = {
'console_scripts': [
'yucc=yucc.cli:main',
],
}
)