-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (32 loc) · 826 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
34
35
#!/usr/bin/env python
from setuptools import setup
import os
PROJECT = 'quantum_diceware'
VERSION = '0.2'
URL = ''
AUTHOR = u'Rory Kirchner'
AUTHOR_EMAIL = u'[email protected]'
DESC = "diceware a quantum random number generator"
def read_file(file_name):
file_path = os.path.join(
os.path.dirname(__file__),
file_name
)
return open(file_path).read()
setup(
name='quantum_diceware',
version=VERSION,
description=DESC,
long_description=read_file('README.md'),
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
include_package_data=True,
zip_safe=False,
packages=['quantum_diceware'],
install_requires=[
'quantumrandom'
],
package_data = {'quantum_diceware': ['wordlists/*.asc']},
scripts=['scripts/quantum-diceware.py']
)