-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
47 lines (44 loc) · 1.41 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""
Python canonical setup script.
"""
from os import path
from setuptools import setup
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
LONG_DESCRIPTION = f.read()
setup(
name='pupdb',
packages=['pupdb'],
version='0.1.4',
license='MIT',
description='A simple file-based key-value database written in Python.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
download_url=(
'https://github.com/tuxmonk/pupdb/archive/master.zip'
),
url='https://github.com/tuxmonk/pupdb',
author='tuxmonk',
author_email='[email protected]',
keywords=[
'file-based', 'key-value-store', 'python', 'database', 'rest-api',
'process-safe', 'cross-language'
],
install_requires=[
'filelock',
'flask',
'gunicorn'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
include_package_data=True
)