-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 916 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 916 Bytes
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
from setuptools import setup
setup(name='Minicash',
version='0.5.1',
description='A cryptocurrency without blockchain',
url='http://github.com/saavedra29/Minicash',
author='Aristides Tomaras',
author_email='arisgold29@gmail.com',
license='MIT',
scripts=['minicash/minicash', 'minicash/minicashd', 'minicash/quickDataGen'],
packages=['minicash', 'minicash.utils'],
install_requires=[
'json-rpc','python-daemon', 'python-gnupg', 'lockfile'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Framework :: AsyncIO',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Security :: Cryptography'
],
keywords='Cryptocurrency gpg',
zip_safe=False)