-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.3 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.3 KB
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
36
37
38
39
from setuptools import setup, find_packages
setup(
name = "dwpwg",
use_scm_version = True,
author = "Raspberry Aether",
author_email = "raspberryaether@riseup.net",
description = "(d)ice(w)are (p)ass(w)ord (g)enerator",
keywords = ("diceware password passwords passphrase passphrases " +
"security bitcoins monero crypto cryptocurrency " +
"key keys keyphrase keyphrases encryption nsa " +
"surveillance privacy private secret secrecy " +
"generate generator dice d20 brainwallet wallet").split(),
url = "https://github.com/raspberryaether/dwpwg",
packages = find_packages(),
include_package_data=True,
entry_points = {
'console_scripts': [
'dwpwg = dwpwg.pwgen:main'
]
},
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Utilities"
],
install_requires = [
"pyparsing"
],
setup_requires = [
"setuptools_scm"
]
)