-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 969 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (33 loc) · 969 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
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/python
import sys
from setuptools import setup, find_packages
needs_wheel = {'release', 'bdist_wheel'}.intersection(sys.argv)
wheel = ['wheel'] if needs_wheel else []
setup(
name='thumpy',
version='0.4.3',
author='Brent Tubbs/Berry Phillips',
author_email='brent.tubbs@gmail.com',
packages=find_packages(),
include_package_data=True,
install_requires = [
'pillow==6.2.0',
'boto>=2.45.0',
'gevent>=1.2.0',
'pyyaml>=3.10',
'six>=1.10.0',
],
setup_requires=[
'setuptools_scm',
] + wheel,
entry_points = {
'console_scripts': [
'thumpy = thumpy:run',
],
},
url='https://github.com/btubbs/thumpy',
description=('A Python web server that uses Pillow to dynamically scale, '
'crop, transform and serve images from S3 or the local '
'filesystem'),
long_description=open('README.rst').read(),
)