-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (36 loc) · 1.08 KB
/
setup.py
File metadata and controls
43 lines (36 loc) · 1.08 KB
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
37
38
39
40
41
42
#!/usr/bin/env python
import os
from setuptools import setup
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name='py_thumbnailer',
version='0.2.2',
description='Documents Thumbnailer library',
long_description=read('README.rst'),
author='Roman Karpovich',
author_email='fpm.th13f@gmail.com',
url='https://github.com/razortheory/py_thumbnailer',
license='BSD',
packages=['py_thumbnailer', ],
entry_points={
'console_scripts': [
'py-thumbnailer = py_thumbnailer.cli:main',
]
},
install_requires=[
'pillow',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Environment :: Console',
'Environment :: Plugins',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
)