-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (27 loc) · 926 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
23
24
25
26
27
28
29
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="puree",
version="1.0.2",
author="Jay Sullivan",
author_email="[email protected]",
description="PUREE: Password-based Uniform-Random-Equivalent Encryption",
url="https://puree.cc",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
scripts=['puree'],
data_files = [('man/man1', ['docs/puree.1'])],
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: Public Domain",
"Operating System :: POSIX :: Linux",
],
python_requires='>=3.6',
install_requires=[
'pytest>=5.4.3', 'pytest<6.0.0',
'pysodium>=0.7.5', 'pysodium<1.0.0',
'argon2-cffi>=20.1.0', 'argon2-cffi<21.0.0'
]
)