forked from Yelp/sqlite3dbm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 980 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
from sqlite3dbm import __version__
import setuptools
setuptools.setup(
author='Jason Fennell',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
description='sqlite-backed dictionary',
license='Apache',
long_description=open('README.md').read(),
name='sqlite3dbm',
packages=['sqlite3dbm'],
provides=['sqlite3dbm'],
url='http://github.com/Yelp/sqlite3dbm/',
version=__version__,
)