-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 808 Bytes
/
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
#!/usr/bin/env python
from FileExporter.version import VERSION
from distutils.core import setup
import os
import os.path
import sys
from glob import glob
#########################################################################
setup(name="fes",
version=VERSION,
description="File Export Service",
author="Chris Powell",
author_email="[email protected]",
package_dir={'FileExporter': 'FileExporter'},
packages=["FileExporter"],
data_files=[
('/opt/fes', glob("fes.py")),
('/etc/init.d/', glob("fes")),
('/opt/fes', glob("fes.conf"))
],
license="GPL v2",
long_description="""
fes is a simple program that exports files to a location via file move or FTP/SFTP.
"""
)