forked from opentelekomcloud/python-otcclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (51 loc) · 1.66 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This file is part of OTC Tool released under MIT license.
# Copyright (C) 2016 T-systems Kurt Garloff, Zsolt Nagy
import os
from setuptools import setup, find_packages
import platform
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
man_file= None
if platform.system() == 'Linux':
man_file = ('/usr/local/share/man/man1', ['man/otc.1'])
elif platform.system() == 'Windows':
man_file = ('man/man1', ['man/otc.1'])
long_description = (
read('README.rst')
+ '\n' +
'Download\n'
'********\n'
)
setup(name='python-otcclient',
version=read('VER').strip(),
description='Open Telecom Client Tool',
long_description=long_description,
url='https://github.com/OpenTelekomCloud/python-otcclient',
author='Zsolt Nagy',
author_email='[email protected]',
license='MIT License',
packages=find_packages(),
include_package_data=True,
package_data={
'': ['*.template']
},
keywords="otc, openstack, huawei, cloud, devops, t-systems, s3, obs, containers, docker, rds",
classifiers=[
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
],
zip_safe=True,
entry_points = {
'console_scripts': [
'otc = otcclient.shell:main'
]
},
test_suite="tests"
,data_files=[man_file]
)