-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
50 lines (42 loc) · 1.56 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
import os.path
from setuptools import find_packages, setup
from sqlalchemy_imageattach.version import VERSION
def readme():
try:
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
return f.read()
except (IOError, OSError):
pass
install_requires = [
'SQLAlchemy >= 0.9.0',
'Wand >= 0.3.0'
]
setup(
name='SQLAlchemy-ImageAttach',
version=VERSION,
description='SQLAlchemy extension for attaching images to entity objects',
long_description=readme(),
url='https://github.com/dahlia/sqlalchemy-imageattach',
author='Hong Minhee',
author_email='hong.minhee' '@' 'gmail.com',
license='MIT License',
packages=find_packages(exclude=['tests', 'tests.stores']),
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: Stackless',
'Topic :: Database :: Front-Ends',
'Topic :: Multimedia :: Graphics'
]
)