-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (26 loc) · 978 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
import os
from setuptools import setup, find_packages
setup(
name="semidbm2",
version="0.5.2",
description="Cross platform (fast) DBM interface in python",
long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
license="BSD",
author="Quora, Inc.",
author_email="asynq@quora.com",
packages=find_packages(),
zip_safe=False,
keywords="semidbm, semidbm2, dbm",
url="https://github.com/quora/semidbm2",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: BSD License",
],
)