-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (54 loc) · 1.76 KB
/
setup.py
File metadata and controls
56 lines (54 loc) · 1.76 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
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="spraay-rtp",
version="0.1.0",
author="Spraay Protocol",
author_email="hello@spraay.app",
description="Robot Task Protocol SDK — connect any robot to the x402 payment network",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/plagtech/rtp-python-sdk",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
],
python_requires=">=3.10",
install_requires=[
"httpx>=0.25.0",
"aiohttp>=3.9.0",
"python-dotenv>=1.0.0",
],
extras_require={
"pi": ["pigpio>=1.78"],
"serial": ["pyserial>=3.5"],
"dev": [
"pytest>=7.0",
"pytest-asyncio>=0.21"
]
},
entry_points={
"console_scripts": [
"rtp-device=rtp.cli:main"
]
},
keywords=[
"rtp", "x402", "robotics", "spraay",
"ai-agents", "usdc", "depin", "raspberry-pi"
],
project_urls={
"Bug Reports": "https://github.com/plagtech/rtp-python-sdk/issues",
"Spec": "https://github.com/plagtech/rtp-spec",
"Gateway": "https://gateway.spraay.app",
"Docs": "https://docs.spraay.app"
}
)