This repository has been archived by the owner on Aug 8, 2018. It is now read-only.
forked from heikoheiko/pyethapp
-
Notifications
You must be signed in to change notification settings - Fork 604
/
setup.py
executable file
·87 lines (75 loc) · 2.49 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
from setuptools import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def __init__(self, *args, **kwargs):
TestCommand.__init__(self, *args, **kwargs)
self.test_suite = True
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
raise SystemExit(errno)
with codecs.open('README.rst', encoding='utf8') as readme_file:
README = readme_file.read()
with codecs.open('HISTORY.rst', encoding='utf8') as history_file:
HISTORY = history_file.read().replace('.. :changelog:', '')
LONG_DESCRIPTION = README + '\n\n' + HISTORY
# requirements
install_requires = set(x.strip() for x in open('requirements.txt'))
install_requires_replacements = {
'https://github.com/ethereum/serpent/tarball/develop': 'ethereum-serpent',
}
install_requires = [install_requires_replacements.get(r, r) for r in install_requires]
# dependency links
dependency_links = [
'https://github.com/ethereum/serpent/tarball/develop#egg=ethereum-serpent-9.99.9',
]
# *IMPORTANT*: Don't manually change the version here. Use the 'bump2version' utility.
# see: https://github.com/ethereum/pyethapp/wiki/Development:-Versions-and-Releases
version = '1.5.1a0'
setup(
name='pyethapp',
version=version,
description='Python Ethereum Client',
long_description=LONG_DESCRIPTION,
author='HeikoHeiko',
author_email='[email protected]',
url='https://github.com/ethereum/pyethapp',
packages=[
'pyethapp',
],
package_data={
'pyethapp': ['genesisdata/*.json']
},
license='MIT',
zip_safe=False,
keywords='pyethapp',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
cmdclass={'test': PyTest},
install_requires=install_requires,
dependency_links=dependency_links,
tests_require=[
# 'ethereum-serpent>=1.8.1',
'mock==2.0.0',
'pytest-mock==1.6.0',
],
entry_points='''
[console_scripts]
pyethapp=pyethapp.app:app
'''
)