mirror of
https://github.com/andreicscs/HoneyWire
synced 2026-06-26 12:39:53 +00:00
10 lines
183 B
Python
10 lines
183 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='honeywire',
|
|
version='2.0.0',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'requests>=2.31.0'
|
|
],
|
|
) |