-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.22 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
36
37
38
39
40
41
42
43
44
45
from setuptools import setup
import os
VERSION = '0.1.0'
PROJECT = 'quantum-sg'
AUTHOR = u'Alexander Shelepenok'
AUTHOR_EMAIL = u'alxshelepenok@gmail.com'
URL = 'https://github.com/alxshelepenok/quantum-sg'
DESCRIPTION = "A command line tool that generates a cryptographically secure quantum-level secrets using ANU QRNG."
def read_file(file_name):
file_path = os.path.join(
os.path.dirname(__file__),
file_name
)
return open(file_path).read()
setup(
url=URL,
name=PROJECT,
author=AUTHOR,
version=VERSION,
description=DESCRIPTION,
author_email=AUTHOR_EMAIL,
long_description=read_file('README.md'),
long_description_content_type="text/markdown",
zip_safe=True,
include_package_data=True,
packages=['quantum_sg'],
keywords='quantum random secrets',
install_requires=['quantumrandom'],
entry_points="""
[console_scripts]
quantum-sg = quantum_sg.quantum_sg:main
""",
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Mathematics',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)