Skip to content

Commit

Permalink
Add requirements installation automation | Update credits
Browse files Browse the repository at this point in the history
  • Loading branch information
MiKoronjoo committed May 13, 2024
1 parent 6e1104f commit 8c6141b
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENCE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022-2023 Deus Finance
Copyright (c) 2022-2024 Deus Finance

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,8 @@ from multicallable.multicall import Multicall
multicall = Multicall(w3, custom_address, custom_abi)
mc = Multicallable(contract_address, contract_abi, multicall=multicall)
```

## Authors

- **[MiKO](https://github.com/MiKoronjoo)** - *Initial work*
- **[Naveed](https://github.com/Navid-Fkh)** - *Contributor*
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
web3>=6.0.0
web3>=6.0.0,<7.0.0
eth-abi>=4.0.0-b.2
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[metadata]
name = multicallable
version =6.0.2
author = Hassan Abbasi, Mojtaba Farokhi
author_email = hassan.abbp@gmail.com
version = 6.0.3
author = MiKO, Naveed
author_email = mikoronjoo@gmail.com, [email protected]
description = Easy way to work with Multicall package
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -18,7 +18,7 @@ classifiers =
package_dir =
= src
packages = find:
python_requires = >=3.7.2
python_requires = >=3.7.2,<4.0.0

[options.packages.find]
where = src
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from setuptools import setup

with open('requirements.txt') as f:
required = f.read().splitlines()

setup(
install_requires=required
)
12 changes: 6 additions & 6 deletions src/multicallable/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Multicallable - Easy way to work with Multicall package

__author__ = "Hassan Abbasi, Mojtaba Farokhi"
__copyright__ = "Copyright (C) 2022-2023, Deus Finance <https://github.com/deusfinance>"
__credits__ = ["Hassan Abbasi", "Mojtaba Farokhi"]
__author__ = "MiKO, Naveed"
__copyright__ = "Copyright (C) 2022-2024, Deus Finance <https://github.com/deusfinance>"
__credits__ = ["MiKO", "Naveed"]
__license__ = "MIT"
__version__ = "6.0.2"
__maintainer__ = "Hassan Abbasi"
__email__ = "hassan.abbp@gmail.com"
__version__ = "6.0.3"
__maintainer__ = "MiKO"
__email__ = "mikoronjoo@gmail.com, [email protected]"
__status__ = "Production"

from .multicallable import Multicallable
Expand Down

0 comments on commit 8c6141b

Please sign in to comment.