27 lines
561 B
Python
27 lines
561 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_pairing',
|
||
|
version='0.0.1',
|
||
|
description='Optimal ate pairings over alt_bn128',
|
||
|
long_description=readme,
|
||
|
author='Vitalik Buterin',
|
||
|
author_email='',
|
||
|
url='https://github.com/ethereum/research',
|
||
|
license=license,
|
||
|
packages=find_packages(exclude=('tests', 'docs')),
|
||
|
install_requires=[
|
||
|
'ethereum == 1.3.7',
|
||
|
'nose',
|
||
|
],
|
||
|
)
|