forked from AhnSeongHyun/pyimgdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (31 loc) · 1000 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
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
#!/usr/bin/env python
__author__ = 'ahnseonghyun'
from setuptools import setup, find_packages
version = '0.1'
setup(name='pyimgdown',
version=version,
description="A module of downloading image from URL and resizing.",
long_description=open("pip_desc.txt").read() + "\n",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='image download http url',
author='SeongHyun.Ahn',
author_email='[email protected]',
url='https://bitbucket.org/AhnSeongHyun/pyimgdown',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'wand',
],
entry_points="""
# -*- Entry points: -*-
""",
)