25 lines
517 B
Python
25 lines
517 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
with open('README.md') as f:
|
|
readme = f.read()
|
|
|
|
with open('LICENSE') as f:
|
|
license = f.read()
|
|
|
|
setup(
|
|
name='py_ssz',
|
|
version='1.0.0',
|
|
description='Python implementation of SimpleSerialize',
|
|
long_description=readme,
|
|
author='Vitalik Buterin',
|
|
author_email='',
|
|
url='https://github.com/ethereum/research',
|
|
license=license,
|
|
packages=find_packages(exclude=('tests', 'docs')),
|
|
install_requires=[
|
|
],
|
|
)
|