-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (41 loc) · 1.39 KB
/
setup.py
File metadata and controls
44 lines (41 loc) · 1.39 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
42
43
44
"""
Setup script for DePIN Infrastructure Scanner
"""
from setuptools import setup, find_packages
# Read requirements from requirements.txt
def read_requirements():
with open('requirements.txt', 'r') as f:
return [line.strip() for line in f if line.strip() and not line.startswith('#')]
setup(
name="pgdn-scanner",
version="1.15.0",
description="PGDN - DePIN Infrastructure Scanner Library",
long_description="A clean library for DePIN infrastructure scanning with support for custom scanners like Sui and Filecoin.",
author="DePIN Team",
author_email="",
url="",
packages=find_packages(),
package_data={
'pgdn_scanner': ['protocols/*.yaml', 'protocols/*.yml'],
},
include_package_data=True,
py_modules=['pgdn_entry'],
install_requires=read_requirements(),
entry_points={
'console_scripts': [
'pgdn-scanner=pgdn_entry:main',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.8",
)