Skip to content

Commit 5c32d40

Browse files
committed
change to new dependency names and update repo uri
1 parent 2c75eaf commit 5c32d40

File tree

3 files changed

+16
-26
lines changed

3 files changed

+16
-26
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
To start development you should begin by cloning the repo.
44

55
```bash
6-
$ git clone [email protected]/pipermerriam/web3.py.git
6+
$ git clone [email protected]/ethereum/web3.py.git
77
```
88

99

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Contents
3737
Release notes
3838
-------------
3939

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>`_.
4141

4242

4343
Indices and tables

setup.py

Lines changed: 14 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,11 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
import os
4-
import sys
5-
63
from setuptools import (
74
setup,
85
find_packages,
96
)
107

118

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-
319
setup(
3210
name='web3',
3311
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
@@ -36,9 +14,21 @@
3614
long_description_markdown_filename='README.md',
3715
author='Piper Merriam',
3816
author_email='[email protected]',
39-
url='https://github.com/pipermerriam/web3.py',
17+
url='https://github.com/ethereum/web3.py',
4018
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+
],
4232
setup_requires=['setuptools-markdown'],
4333
extras_require={
4434
'tester': ["eth-testrpc>=1.3.3"],

0 commit comments

Comments
 (0)