-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 976 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 976 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="encrypted-stream",
version="0.1a1",
description="Transparent encryption and decryption for file-like objects",
long_description=long_description,
long_description_content_type="text/markdown",
author="Antonius Frie",
author_email="antonius.frie@ruhr-uni-bochum.de",
url="https://github.com/antoniusf/encrypted-stream",
project_urls={
"Documentation": "https://encrypted-stream.readthedocs.io/en/latest/",
"Source Code": "https://github.com/antoniusf/encrypted-stream",
},
license="Apache Software License",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Security :: Cryptography",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
install_requires=["pynacl>=1.3"],
py_modules=["encrypted_stream"],
)