forked from ethereum/py-evm
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup_trinity.py
40 lines (38 loc) · 1.15 KB
/
setup_trinity.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='trinity',
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
# NOT CURRENTLY APPLICABLE. VERSION BUMPS MANUAL FOR NOW
version='0.1.0-alpha.17',
description='The Trinity Ethereum Client',
author='Ethereum Foundation',
author_email='piper@pipermerriam.com',
url='https://github.com/ethereum/py-evm',
include_package_data=True,
py_modules=[],
install_requires=[
# DON'T FORGET TO BUMP THIS TOOOOOO!!!!!!!
'py-evm[trinity,p2p]==0.2.0a34',
],
license='MIT',
zip_safe=False,
keywords='ethereum blockchain evm trinity',
packages=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
python_requires=">=3.6,<4",
# trinity
entry_points={
'console_scripts': [
'trinity=trinity:main',
'trinity-beacon=trinity:main_beacon'
],
},
)