Skip to content

Commit

Permalink
Merge b9cddf0 into 4ebc3e5
Browse files Browse the repository at this point in the history
  • Loading branch information
Uxio0 committed Jun 6, 2024
2 parents 4ebc3e5 + b9cddf0 commit 8ac16a1
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 67 deletions.
1 change: 1 addition & 0 deletions gnosis/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VERSION = "6.0.0b30"
71 changes: 71 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "safe-eth-py"
dynamic = ["version"]
description = "Safe Ecosystem Foundation utilities for Ethereum projects"
readme = "README.rst"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "Uxío", email = "uxio@safe.global" },
]
keywords = [
"cowswap",
"django",
"ethereum",
"gnosis",
"safe",
"web3",
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.0",
"Framework :: Django :: 3.0",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"packaging",
"py-evm>=0.7.0a1",
"requests>=2",
"safe-pysha3>=1.0.0",
"web3>=6.2.0",
]

[project.optional-dependencies]
django = [
"django-filter>=2",
"django>=2",
"djangorestframework>=2",
]

[project.urls]
Documentation = "https://safe-eth-py.readthedocs.io/en/latest/"
Homepage = "https://github.com/safe-global/safe-eth-py"
Source = "https://github.com/safe-global/safe-eth-py"
Tracker = "https://github.com/safe-global/safe-eth-py/issues"

[tool.hatch.version]
path = "gnosis/__init__.py"

[tool.hatch.build.targets.sdist]
include = [
"/gnosis",
]
[tool.hatch.build.targets.wheel]
packages = [
"/gnosis",
]
63 changes: 0 additions & 63 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,66 +1,3 @@
[metadata]
name = safe-eth-py
version = 6.0.0b30
description = Safe Ecosystem Foundation utilities for Ethereum projects
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
keywords =
ethereum
web3
django
safe
cowswap
gnosis
url = https://github.com/safe-global/safe-eth-py
author = Uxío
author_email = uxio@safe.global
license = MIT License
license_files =
LICENSE
classifiers =
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 2.0
Framework :: Django :: 3.0
Framework :: Django :: 4.0
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
project_urls =
Documentation = https://safe-eth-py.readthedocs.io/en/latest/
Source = https://github.com/safe-global/safe-eth-py
Tracker = https://github.com/safe-global/safe-eth-py/issues

[options]
packages = find:
platforms = any
include_package_data = True
install_requires =
packaging
py-evm>=0.7.0a1
safe-pysha3>=1.0.0
requests>=2
web3>=6.2.0
python_requires = >=3.9

[options.package_data]
gnosis =
py.typed
*.json

[options.extras_require]
django =
django>=2
django-filter>=2
djangorestframework>=2

[flake8]
max-line-length = 88
select = C,E,F,W,B,B950
Expand Down
4 changes: 0 additions & 4 deletions setup.py

This file was deleted.

0 comments on commit 8ac16a1

Please sign in to comment.