This repository has been archived by the owner on Jul 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
172 lines (142 loc) · 5.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#!/usr/bin/env python
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.install import install
from setuptools.command.develop import develop
_PACKAGE_NAME = 'apache-ariatosca'
_PYTHON_SUPPORTED_VERSIONS = [(2, 7)]
_EXTENSION_DIR = 'extensions'
_EXTENSION_NAMES = [
'aria_extension_tosca'
]
if (sys.version_info[0], sys.version_info[1]) not in _PYTHON_SUPPORTED_VERSIONS:
raise NotImplementedError(
'{0} Package supports Python version 2.7 only'.format(
_PACKAGE_NAME))
root_dir = os.path.dirname(__file__)
with open(os.path.join(root_dir, 'VERSION')) as version_file:
__version__ = version_file.read().strip()
incubating_version = '{0}-incubating'.format(__version__)
with open(os.path.join(root_dir, 'README.rst')) as readme:
long_description = readme.read()
install_requires = []
ssh_requires = [
'Fabric>=1.14, <1.15'
]
win_ssh_requires = [
# Fabric depends on the pypiwin32 on Windows, but doesn't install it
'pypiwin32>=220'
]
extras_require = {
'ssh': ssh_requires,
'ssh:sys_platform=="win32"': win_ssh_requires
}
with open(os.path.join(root_dir, 'requirements.in')) as requirements:
for requirement in requirements.readlines():
requirement = requirement.split('#', 1)[0].strip() # Remove comments
if not requirement:
continue # Skip empty and comment lines
# Dependencies which use environment markers have to go in as conditional dependencies
# under "extra_require" rather than "install_requires", or otherwise the environment
# markers get ignored when installing from wheel. See more here:
# https://wheel.readthedocs.io/en/latest/index.html#defining-conditional-dependencies
# https://hynek.me/articles/conditional-python-dependencies/
if ';' in requirement:
package, condition = requirement.split(';', 1)
cond_name = ':{0}'.format(condition.strip())
extras_require.setdefault(cond_name, [])
extras_require[cond_name].append(package.strip())
else:
install_requires.append(requirement)
console_scripts = ['aria = aria.cli.main:main']
def _generate_user_options(command):
return command.user_options + [
('skip-ctx', None, 'Install with or without the ctx (Defaults to False)')
]
def _generate_boolean_options(command):
return command.boolean_options + ['skip-ctx']
def _initialize_options(custom_cmd):
custom_cmd.command.initialize_options(custom_cmd)
custom_cmd.skip_ctx = False
def _run(custom_cmd):
if custom_cmd.skip_ctx is False:
console_scripts.append('ctx = aria.orchestrator.execution_plugin.ctx_proxy.client:main')
custom_cmd.command.run(custom_cmd)
class InstallCommand(install):
command = install
user_options = _generate_user_options(install)
boolean_options = _generate_boolean_options(install)
initialize_options = _initialize_options
run = _run
class DevelopCommand(develop):
command = develop
user_options = _generate_user_options(develop)
boolean_options = _generate_boolean_options(develop)
initialize_options = _initialize_options
run = _run
setup(
name=_PACKAGE_NAME,
version=__version__,
description='ARIA',
long_description=long_description,
license='Apache License 2.0',
author='ARIA',
author_email='[email protected]',
url='http://ariatosca.incubator.apache.org/',
download_url=(
'https://dist.apache.org/repos/dist/release/incubator/ariatosca/' + incubating_version),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration'],
packages=find_packages(include=['aria*']) +
find_packages(where=_EXTENSION_DIR,
include=['{0}*'.format(name) for name in _EXTENSION_NAMES]),
package_dir=dict((name, '{0}/{1}'.format(_EXTENSION_DIR, name)) for name in _EXTENSION_NAMES),
package_data={
'aria': [
'cli/config/config_template.yaml'
],
'aria_extension_tosca': [
'profiles/tosca-simple-1.0/**',
'profiles/tosca-simple-nfv-1.0/**',
'profiles/aria-1.0/**'
]
},
platforms=['any'],
zip_safe=False,
install_requires=install_requires,
extras_require=extras_require,
entry_points={
'console_scripts': console_scripts
},
cmdclass={
'install': InstallCommand, # used in pip install ...
'develop': DevelopCommand # used in pip install -e ...
}
)