-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 878 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
from setuptools import setup, find_packages, version
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Customer Service',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
setup(
name='SQLiteImageHandler',
version='0.0.1',
description='Simple to use image handler for python sqlite3.',
long_description='This package helps you to save images to sqlite database and get images from sqlite database.',
url='',
author='Mustafa Ozan Çetin',
author_email='mustafaozancetin@gmail.com',
license='MIT',
classifiers=classifiers,
keywords=['sqlite', 'python', 'sqlite-image', 'image-handler'],
packages=find_packages(),
install_requires=['']
)