-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
32 lines (29 loc) · 869 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
# -*- coding:utf-8 -*-
import os
from setuptools import find_packages, setup
def get_long_description():
root_path = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(root_path, 'README.md'), 'r') as fd:
return fd.read()
setup(
name='osc-tui',
version="24.09.0",
long_description=get_long_description(),
long_description_content_type="text/markdown",
packages=find_packages(),
author='Outscale SAS',
author_email='opensource@outscale.com',
description='Outscale',
url='http://www.outscale.com/',
entry_points={'console_scripts': ['osc-tui = osc_tui.main:main']},
install_requires=[
'setuptools',
"requests>=2.28.1",
"osc-sdk-python>=0.26.0",
"pyperclip>=1.8.0",
'osc_diagram',
'osc_npyscreen',
"graphviz",
'requests'
],
)