2016-11-09 10:53:53 +00:00
|
|
|
# Dicekey. A Diceware passphrase generator.
|
2016-04-12 13:00:46 +00:00
|
|
|
# Copyright (C) 2016 Kris Lamoureux
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, version 3 of the License.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# Built-in
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
NAME = "Dicekey"
|
2016-11-09 10:53:53 +00:00
|
|
|
VERSION = "3.0.0-prealpha"
|
2016-04-12 13:00:46 +00:00
|
|
|
AUTHOR = "Kris Lamoureux"
|
|
|
|
AUTHOR_EMAIL = "KrisPublicEmail@gmail.com"
|
|
|
|
URL = "https://github.com/Kris619/Dicekey/"
|
2016-11-09 10:53:53 +00:00
|
|
|
DESCRIPTION = "A Diceware passphrase generator"
|
2016-04-12 13:00:46 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name=NAME,
|
|
|
|
version=VERSION,
|
|
|
|
description=DESCRIPTION,
|
|
|
|
author=AUTHOR,
|
|
|
|
author_email=AUTHOR_EMAIL,
|
|
|
|
license="GNU GPLv3",
|
|
|
|
url=URL,
|
|
|
|
scripts = ["dicekey/dicekey"],
|
2016-11-09 10:53:53 +00:00
|
|
|
py_modules = ["dicekey.diceware"],
|
2016-11-08 03:49:08 +00:00
|
|
|
data_files = [("dicekey/wordlist.asc", '')]
|
2016-04-12 13:00:46 +00:00
|
|
|
)
|