-
Notifications
You must be signed in to change notification settings - Fork 355
/
setup.py
executable file
·68 lines (54 loc) · 2.05 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
# problem w/ test_kademlia_protocol.py
# user_options = [('timeout=', '5', "timeout tests after 5 seconds")]
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
pytest.main(self.test_args)
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
test_requirements = ['sphinx'] # added to requirements. travis doesn't seem to care
install_requires = set(x.strip() for x in open('requirements.txt'))
install_requires_replacements = {
'https://github.com/ethereum/pyrlp/tarball/develop': 'rlp>=0.3.8'}
install_requires = [install_requires_replacements.get(r, r) for r in install_requires]
setup(
name='devp2p',
version='0.0.6',
description='Python implementation of the Ethereum P2P stack',
long_description=readme + '\n\n' + history,
author='HeikoHeiko',
author_email='[email protected]',
url='https://github.com/ethereum/pydevp2p',
packages=find_packages(exclude='devp2p.tests'),
package_dir={'devp2p': 'devp2p'},
include_package_data=True,
install_requires=install_requires,
license="BSD",
zip_safe=False,
keywords='devp2p',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
cmdclass={'test': PyTest},
tests_require=test_requirements
)