forked from tozny/e3db-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (22 loc) · 814 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
from setuptools import setup, find_packages
version = "2.3.0"
setup(
name="e3db",
description="E3DB provides a familiar JSON-based NoSQL-style API for reading, writing, and querying end-to-end encrypted data in the cloud.",
long_description_content_type='text/markdown',
long_description=open("README.md").read(),
version=version,
packages=find_packages(),
install_requires=[
'PyNaCl >= 1.3.0, < 2',
'requests >= 2.4.2, < 3',
'Cryptography >= 2.2',
],
url = "https://github.com/tozny/e3db-python",
download_url = 'https://github.com/tozny/e3db-python/archive/{0}.tar.gz'.format(version),
author = "Tozny, LLC",
author_email = "[email protected]",
license = "TOZNY NON-COMMERCIAL LICENSE",
keywords = ['e3db', 'encryption', 'encrypted-store', 'tozstore'],
classifiers = [],
)