-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 814 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 814 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
from setuptools import setup
from setuptools.command.install import install
import sys, os, stat
from shutil import copyfile
__PROG_NAME__ = 'zdeploy'
__VERSION__ = '1.3.4'
setup(
name=__PROG_NAME__,
version=__VERSION__,
license=open('LICENSE').read(),
url='https://github.com/ziggurattech/%s' % __PROG_NAME__,
author='Fadi Hanna Al-Kass',
author_email='f_alkass@zgps.live',
description='General-purpose host deployment utility',
long_description=open('README.md').read(),
keywords='deployment automation framework',
packages=[__PROG_NAME__],
install_requires=open('requirements.txt').read().split('\n'),
entry_points={
'console_scripts': ['{prog} = {prog}:main'.format(prog=__PROG_NAME__)],
}
)