-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 1.47 KB
/
setup.py
File metadata and controls
41 lines (40 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
import pathlib
from setuptools import setup, find_packages
setup(
name="lighthouse-web3/Lighthouse-Python-SDK",
version="0.1.6",
license="GNU GENERAL PUBLIC LICENSE",
description="Lighthouse Python SDK",
author="Ravish Sharma | Ayobami Oki | Nandit Mehra",
author_email="ravish@lighthouse.storage",
url="https://github.com/lighthouse-web3/lighthouse-python-sdk",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
"requests>=2.31.0",
"certifi>=2023.5.7",
"charset-normalizer>=3.1.0",
"idna>=3.4",
"urllib3>=2.0.2",
"eth-account>=0.13.7",
],
python_requires=">=3.6",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="lighthouse storage sdk python filecoin ipfs web3 perpetual",
long_description=(
(pathlib.Path(__file__).parent.resolve()) / "README.md"
).read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
)