-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (27 loc) · 884 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (27 loc) · 884 Bytes
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
#!/usr/bin/env python
"""
Setup file for DBWrapper.
"""
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='DBWrapper',
version='1.1',
description='Thread-safe wrapper for Python sqlite3 bindings.',
author='Sven Festersen',
author_email='sven@sven-festersen.de',
url='https://github.com/SvenFestersen/DBWrapper',
packages=['dbwrapper'],
license='GPL',
keywords='database sqlite threading',
long_description=read('README'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)