-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
35 lines (33 loc) · 1.25 KB
/
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
34
35
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="passphraseme",
version="0.1.1",
author="Micah Lee",
author_email="[email protected]",
description="A quick and simple cryptographically secure script to generate high entropy passphrases using the Electronic Frontier Foundation's wordlists",
long_description=long_description,
long_description_content_type="text/markdown",
license="GPLv3+",
python_requires=">=3.4",
url="https://github.com/micahflee/passphraseme",
packages=['passphraseme'],
package_data={'passphraseme': ['wordlists/*.txt']},
classifiers=(
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Intended Audience :: System Administrators",
),
entry_points={
'console_scripts': [
'passphraseme = passphraseme:main',
],
},
)