forked from noony/ImageResizingServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 802 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
29
30
#!/usr/bin/env python
import distutils.core
import sys
try:
import setuptools
except ImportError:
pass
kwargs = {}
distutils.core.setup(
name="ImageResizingServer",
version=version,
data_files= [
('/etc/nginx/sites-enabled/', ['./nginx-conf/ImageResizingServer']),
('/etc/uwsgi/apps-enabled/', ['./uwsgi-conf/ImageResizingServerApp.ini']),
('/srv/ImageResizingServer', ['./app/server.conf', './app/ImageResizingServerApp.py'])
],
author="Thomas Colomb",
author_email="",
url="https://github.com/noony",
download_url="https://github.com/noony/ImageResizingServer/tarball/master",
license="",
description="This server provides a service to resize and crop images with a simple API.",
classifiers=[
],
**kwargs
)