File tree 3 files changed +16
-26
lines changed
3 files changed +16
-26
lines changed Original file line number Diff line number Diff line change 3
3
To start development you should begin by cloning the repo.
4
4
5
5
``` bash
6
- $ git clone
[email protected] /
pipermerriam /web3.py.git
6
+ $ git clone
[email protected] /
ethereum /web3.py.git
7
7
```
8
8
9
9
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Contents
37
37
Release notes
38
38
-------------
39
39
40
- `View release notes on Github <https://github.com/pipermerriam /web3.py/blob/master/CHANGELOG >`_.
40
+ `View release notes on Github <https://github.com/ethereum /web3.py/blob/master/CHANGELOG >`_.
41
41
42
42
43
43
Indices and tables
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
# -*- coding: utf-8 -*-
3
- import os
4
- import sys
5
-
6
3
from setuptools import (
7
4
setup ,
8
5
find_packages ,
9
6
)
10
7
11
8
12
- DIR = os .path .dirname (os .path .abspath (__file__ ))
13
-
14
-
15
- readme = open (os .path .join (DIR , 'README.md' )).read ()
16
-
17
- install_requires = [
18
- "cytoolz>=0.8.2" ,
19
- "ethereum-abi-utils>=0.4.3" ,
20
- "ethereum-keyfile>=0.3.0" ,
21
- "ethereum-keys>=0.1.0-alpha.7" ,
22
- "ethereum-utils>=0.5.0" ,
23
- "pylru>=1.0.9" ,
24
- "pysha3>=0.3" ,
25
- "requests>=2.12.4" ,
26
- "rlp>=0.4.7" ,
27
- "toolz>=0.8.2" ,
28
- "ethereum-tester~=0.1.0b1" ,
29
- ]
30
-
31
9
setup (
32
10
name = 'web3' ,
33
11
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
36
14
long_description_markdown_filename = 'README.md' ,
37
15
author = 'Piper Merriam' ,
38
16
39
- url = 'https://github.com/pipermerriam /web3.py' ,
17
+ url = 'https://github.com/ethereum /web3.py' ,
40
18
include_package_data = True ,
41
- install_requires = install_requires ,
19
+ install_requires = [
20
+ "cytoolz>=0.8.2" ,
21
+ "eth-abi>=0.5.0" ,
22
+ "eth-keyfile>=0.4.0" ,
23
+ "eth-keys>=0.1.0-beta.3" ,
24
+ "eth-utils>=0.7.1" ,
25
+ "pylru>=1.0.9" ,
26
+ "pysha3>=0.3" ,
27
+ "requests>=2.12.4" ,
28
+ "rlp>=0.4.7" ,
29
+ "toolz>=0.8.2" ,
30
+ "eth-tester~=0.1.0b2" ,
31
+ ],
42
32
setup_requires = ['setuptools-markdown' ],
43
33
extras_require = {
44
34
'tester' : ["eth-testrpc>=1.3.3" ],
You can’t perform that action at this time.
0 commit comments