forked from stewartpark/git-play
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 706 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
try:
ldsc = open("README.rst").read()
except:
ldsc = ""
setup(
name="git-play",
version="0.12",
author="Ju-yeong Park",
author_email="interruptz@gmail.com",
scripts=["bin/git-play"],
url="http://github.com/interruptz/git-play",
license="MIT LICENSE",
description="Git-play is a custom git command for deploying an application server very easily from a remote git repository. It checks the remote git repository every minute and if something has changed, it will restart the application server automatically.",
long_description = ldsc,
install_requires=[
'PyYAML==3.10',
'GitPython==0.3.2.RC1'
]
)