forked from ethereum/beacon_chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (52 loc) · 1.23 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
deps = {
'beacon_chain': [
"eth-typing>=1.1.0,<2.0.0",
"py-ecc==1.4.3",
"pyblake2==1.1.2",
],
'test': [
"eth-tester[py-evm]==0.1.0b29",
"vyper==0.1.0b6",
"web3==4.3.0",
"pytest==3.6.1",
"pytest-mock==1.10.0",
],
'lint': [
"mypy==0.620",
"flake8==3.5.0",
],
}
deps['dev'] = (
deps['beacon_chain'] +
deps['test'] +
deps['lint']
)
install_requires = deps['beacon_chain']
setup(
name='beacon_chain',
version='0.0.1-alpha.1',
description='',
url='https://github.com/ethereum/beacon_chain',
packages=find_packages(
exclude=[
"tests",
"tests.*",
]
),
python_requires='==3.6.*',
py_modules=['beacon_chain', 'ssz'],
extras_require=deps,
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md',
include_package_data=True,
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
install_requires=install_requires,
)