-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 756 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 756 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
27
28
29
from setuptools import setup, find_packages
setup(
name='blockchain',
author='Damian Darczuk',
description='Simple use blockchain technology',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Topic :: Blokchain',
],
install_requires=[
'requests==2.20.1',
'colorlog==3.1.4',
'logging-tree==1.7',
'flask==1.0.2',
'cryptography==2.3.1 ',
],
tests_require=[
'pytest',
'pytest-cov',
'flake8'
],
packages=find_packages(),
python_requires=">=3.6",
)