-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·22 lines (19 loc) · 793 Bytes
/
setup.py
File metadata and controls
executable file
·22 lines (19 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
## -----------------------------------------------------------------------------
# \file setup.py
# \brief Installs the kgsync module
#
# ------------------------------------------------------------------------------
# Kris Dunning ippie52@gmail.com 2016.
# ------------------------------------------------------------------------------
from distutils.core import setup
from os import name
if name == 'nt': # It's Windows
import py2exe
setup(name='kgsync',
version='0.1',
description='Git synchroniser tool for managing sub-repositories without using git\'s submodule feature',
author='Kris Dunning',
author_email='ippie52@gmail.com',
url='https://github.com/ippie52/kgsync.git',
py_modules=['kgsync'],
console=['kgsync'])