-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 780 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 780 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import passcat
from setuptools import setup
setup(
name='passcat',
version=passcat.__version__,
description='Passcat lets you generate cryptographically secure, memorable passphrases.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author='Gael Gentil',
author_email='iamcryptoki@gmail.com',
url='https://github.com/iamcryptoki/passcat',
license='MIT',
keywords='passphrase, password, secret, security, words',
packages=['passcat'],
package_data={
'passcat' : ['wordlists/*.txt']
},
install_requires=['docopt'],
entry_points={
'console_scripts': [
'passcat=passcat.passcat:main',
]
}
)