forked from ethereum/pyethereum
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
22 lines (20 loc) · 931 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import versioneer
versioneer.VCS = 'git'
versioneer.versionfile_source = 'pyethereum/_version.py'
versioneer.versionfile_build = 'pyethereum/_version.py'
versioneer.tag_prefix = '' # tags are like 1.2.0
versioneer.parentdir_prefix = 'pyethereum-' # dirname like 'myproject-1.2.0'
console_scripts = ['pyeth=pyethereum.eth:main',
'pyethclient=pyethereum.ethclient:main']
setup(name="pyethereum",
packages=find_packages("."),
description='Next generation cryptocurrency network',
url='https://github.com/ethereum/pyethereum/',
install_requires=[
'six', 'leveldb', 'bitcoin', 'pysha3',
'miniupnpc', 'ethereum-serpent', 'pytest',
'bottle', 'waitress', 'docopt', 'repoze.lru'],
entry_points=dict(console_scripts=console_scripts),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass())