forked from signalfx/maestro-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (37 loc) · 1.25 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
#!/usr/bin/env python
# Copyright (C) 2013 SignalFuse, Inc.
# Setuptools install description file.
import os
from setuptools import setup, find_packages
with open('README.md') as readme:
long_description = readme.read()
with open('maestro/version.py') as f:
exec(f.read())
with open('requirements.txt') as f:
requirements = [line.strip() for line in f.readlines()]
setup(
name=name,
version=version,
description='Orchestrator for multi-host Docker deployments',
long_description=long_description,
zip_safe=True,
packages=find_packages(),
install_requires=requirements,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
entry_points={
'console_scripts': ['maestro = maestro.__main__:main'],
'setuptools.installation': ['eggsecutable = maestro.__main__:main'],
},
author='Maxime Petazzoni',
author_email='[email protected]',
license='GNU Lesser General Public License v3',
keywords='maestro docker orchestration deployment',
url='http://github.com/signalfuse/maestro-ng',
)