-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 959 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
29
30
31
32
33
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='leveldb-cli',
version='0.2.1',
description='A command-line interface for LevelDB databases.',
long_description=open('README.txt').read(),
author='Maurycy Pietrzak',
author_email='[email protected]',
url='https://github.com/maurycyp/leveldb-cli',
packages=['leveldbcli'],
license='Unlicense',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Database',
],
install_requires=[
'docopt==0.6.2',
'leveldb==0.193',
],
entry_points={'console_scripts': [
'leveldb = leveldbcli.app:main',
]},
# TODO zip_safe, package_data
)