forked from ethereum/pyethereum
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 1.04 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
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:ethclient']
setup(name="pyethereum",
packages=find_packages("."),
description='Next generation cryptocurrency network',
url='https://github.com/ethereum/pyethereum/',
install_requires=[
'bitcoin',
'bottle',
'click',
'docopt',
'ethereum-serpent',
'leveldb',
'miniupnpc',
'pysha3',
'pytest',
'repoze.lru',
'requests',
'six',
'waitress',
],
entry_points=dict(console_scripts=console_scripts),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass())