-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 869 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
30
31
32
33
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
setup(
name="pympw",
version="0.2.1",
description=" An implementation of the Master Password algorithm v3 with a nice CLI",
url="http://github.com/roguh/pympw",
author="Hugo Rivera",
author_email="flyingcircus@example.com",
long_description=readme(),
classifiers=[
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Utilities",
"Environment :: Console",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Topic :: Internet",
],
# TODO license=None,
packages=["pympw"],
install_requires=["scrypt", "pyperclip"],
scripts=["bin/pympw"],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
zip_safe=False,
)