-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 745 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 745 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
setup(
name="simple-asymmetric",
version="0.2",
author="David Burke",
author_email="david@burkesoftware.com",
description=("An easy way to do combined AES and RSA encryption with python"),
license="Apache License 2.0",
keywords="encryption",
url="https://github.com/burke-software/simple-asymmetric-python",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
],
install_requires=[
'cryptography>=1.3.2',
],
test_suite="tests",
)