forked from Helios-Protocol/py-helios-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_trinity.py
More file actions
35 lines (33 loc) · 1020 Bytes
/
setup_trinity.py
File metadata and controls
35 lines (33 loc) · 1020 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='helios',
# *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.2',
description='The Helios Node',
author='Tommy Mckinnon',
author_email='tommy@heliosprotocol.io',
url='https://github.com/Helios-Protocol/py-helios-node',
include_package_data=True,
py_modules=[],
install_requires=[
'py-helios-node[helios,hp2p]==0.2.0a18',
],
license='MIT',
zip_safe=False,
keywords='blockchain hvm helios',
packages=[],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
# helios
entry_points={
'console_scripts': ['helios=helios:main'],
},
)