-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (35 loc) · 981 Bytes
/
setup.py
File metadata and controls
42 lines (35 loc) · 981 Bytes
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
from setuptools import setup
import os
import sys
import codecs
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
# intentionally *not* adding an encoding option to open
return codecs.open(os.path.join(here, *parts), 'r').read()
install_requires = [
"virtualenv==15.1.0",
"requests>=2.9.1,<3.0.0",
]
if sys.version_info[:2] == (2, 6):
install_requires += [
'argparse',
]
setup(
name='cloudify-agent-packager',
version='5.0.11',
url='https://github.com/cloudify-cosmo/cloudify-agent-packager',
author='Cloudify',
author_email='cosmo-admin@cloudify.co',
license='LICENSE',
platforms='All',
description='Creates Cloudify Agent Packages',
long_description=read('README.md'),
packages=['agent_packager'],
entry_points={
'console_scripts': [
'cfy-ap = agent_packager.cli:main',
]
},
install_requires=install_requires,
include_package_data=True
)