-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (26 loc) · 1.06 KB
/
setup.py
File metadata and controls
executable file
·28 lines (26 loc) · 1.06 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
import wudder
setup(
name='wudder',
version=wudder.__version__,
description='Create blockchain certificates for all the events of your business processes. In Ethereum. At scale.',
url='https://github.com/wuddertech/python-sdk',
author='Rodrigo Martínez Castaño',
author_email='rodrigo@martinez.gal',
license='GNU General Public License v3 (GPLv3)',
packages=find_packages(),
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=['requests', 'easygraphql', 'easyweb3', 'digsig >= 1.216.0, < 2.0.0'])