generated from labteral/python-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·28 lines (26 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
import digsig
setup(name='digsig',
version=digsig.__version__,
description='Digital signature toolkit for Python',
url='https://github.com/labteral/digsig',
author='Rodrigo Martínez Castaño',
author_email='[email protected]',
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",
],
python_requires=">=3.6",
install_requires=['cryptography~=3.4.4', 'eth-account>=0.5.4, <1.0.0'])