-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1022 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 1022 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
25
26
27
28
29
30
from setuptools import setup
setup(
name='sendsafely',
version='1.0.9.6',
packages=['sendsafely', 'sendsafely/pgpy', 'sendsafely/pgpy/packet/subpackets'],
description='The SendSafely Client API allows programmatic access to SendSafely and provides a layer of abstraction from our REST API, which requires developers to perform several complex tasks in a correct manner.',
long_description_content_type="text/markdown",
author='SendSafely',
author_email='support@sendsafely.com',
url='https://github.com/SendSafely/Python-Client-API',
install_requires=[
'standard-imghdr',
'requests',
'cryptography',
'pyasn1'
],
package_data={
'sendsafely': ['pgpy/**/*'],
},
python_requires='>=3',
license='Apache License Version 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License'
],
)