This repository was archived by the owner on Aug 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (37 loc) · 1.31 KB
/
setup.py
File metadata and controls
46 lines (37 loc) · 1.31 KB
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
# coding=utf-8
from distutils.util import convert_path
from setuptools import setup, find_packages
from codecs import open
import os
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
return open(path, encoding='utf-8').read()
# This will set the version string to __version__
__version__ = '1.0.0-Beta5'
setup(
name="tinymp",
version=__version__,
packages=find_packages(),
# development metadata
zip_safe=True,
# metadata for upload to PyPI
author="Andrew Shapton",
author_email="alshapton@gmail.com",
description="TinyMP is a MessagePack Storage extension for the TinyDB database https://github.com/msiemens/tinydb",
license="MIT",
keywords="database nosql python tinydb documentdb",
url="https://github.com/alshapton/TinyMP/",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: Database",
"Topic :: Utilities",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent"
],
long_description=read('README.rst'),
)