Skip to content

Commit edb51b5

Browse files
committed
ci: rename module into lighthouseweb3
1 parent a9ca1bf commit edb51b5

File tree

10 files changed

+30
-5
lines changed

10 files changed

+30
-5
lines changed
File renamed without changes.

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[metadata]
2+
description_file = README.md
3+
license_file = LICENSE.md

setup.py

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
#!/usr/bin/env python3
2+
from setuptools import setup, find_packages
23

3-
4-
def pip_setup():
5-
6-
pass
4+
setup(
5+
name="lighthouseweb3",
6+
version="0.0.1",
7+
description="Lighthouse Python SDK",
8+
author="Perfection Loveday",
9+
author_email="perfection@lighthouse.storage",
10+
url="https://github.com/lighthouse-web3/lighthouse-python-sdk",
11+
packages=find_packages("lighthouseweb3"),
12+
install_requires=["requests"],
13+
python_requires=">=3.6",
14+
classifiers=[
15+
"Programming Language :: Python :: 3",
16+
"License :: OSI Approved :: MIT License",
17+
"Operating System :: OS Independent",
18+
"Intended Audience :: Developers",
19+
"Topic :: Software Development :: Build Tools",
20+
"Programming Language :: Python :: 3.6",
21+
"Programming Language :: Python :: 3.7",
22+
"Programming Language :: Python :: 3.8",
23+
"Programming Language :: Python :: 3.9",
24+
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3 :: Only",
26+
],
27+
keywords="lighthouse storage sdk python filecoin ipfs web3 perpetual",
28+
)

tests/test_deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import os
44
import unittest
5-
from lighthouse import Lighthouse
5+
from lighthouseweb3 import Lighthouse
66
from .setup import parse_env
77

88

0 commit comments

Comments
 (0)