Skip to content

Commit 666c7b0

Browse files
authored
Add files via upload
1 parent aeef531 commit 666c7b0

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
from setuptools import setup, find_packages, version
2+
3+
classifiers = [
4+
'Development Status :: 5 - Production/Stable',
5+
'Intended Audience :: Customer Service',
6+
'Intended Audience :: Developers',
7+
'Operating System :: Microsoft :: Windows',
8+
'License :: OSI Approved :: MIT License',
9+
'Programming Language :: Python :: 3'
10+
]
11+
12+
setup(
13+
name='SQLiteImageHandler',
14+
version='0.0.1',
15+
description='Simple to use image handler for python sqlite3.',
16+
long_description='This package helps you to save images to sqlite database and get images from sqlite database.',
17+
url='',
18+
author='Mustafa Ozan Çetin',
19+
author_email='[email protected]',
20+
license='MIT',
21+
classifiers=classifiers,
22+
keywords=['sqlite', 'python', 'sqlite-image', 'image-handler'],
23+
packages=find_packages(),
24+
install_requires=['']
25+
)

0 commit comments

Comments
 (0)