-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 723 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
INSTALL_REQUIRES = [
"docopt>=0.6.2",
"Flask>=1.0.2",
"requests>=2.21.0",
"boto3>=1.9.111"
]
setup(
name='cryptocracy',
version='0.3.0',
description='''Client-side attribute-based encryption (ABE)/ access control (ABAC) -
Democratise cryptographic access control to your data stored in an untrusted cloud.''',
url='https://github.com/doughgle/cryptocracy',
packages=find_packages(where='src'),
package_dir={"": "src"},
install_requires=INSTALL_REQUIRES,
python_requires='>=3.4',
author='Douglas Hellinger',
entry_points={
'console_scripts': ['cryptocracy = cryptocracy.delivery.cli.cryptocracy:main']
}
)