forked from ethereum/py-evm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.35 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='py-evm',
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
version='0.2.0-alpha.7',
description='Python implementation of the Ethereum Virtual Machine',
long_description_markdown_filename='README.md',
author='Piper Merriam',
author_email='[email protected]',
url='https://github.com/ethereum/py-evm',
include_package_data=True,
py_modules=['evm'],
install_requires=[
"aiohttp==2.3.1",
"async_lru>=0.1.0",
"cryptography>=2.0.3",
"cytoolz==0.8.2",
"eth-bloom>=0.5.2",
"eth-utils>=0.7.1",
"pyethash>=0.1.27",
"py-ecc==1.4.2",
"rlp==0.4.7",
"eth-keys==0.1.0b3",
"trie>=0.3.2",
],
extra_require={
'leveldb': [
"leveldb>=0.194",
]
},
setup_requires=['setuptools-markdown'],
license='MIT',
zip_safe=False,
keywords='ethereum blockchain evm',
packages=find_packages(exclude=["tests", "tests.*"]),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
],
)