mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
14 lines
347 B
Python
14 lines
347 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
name="pylokinet",
|
|
version="0.0.1",
|
|
license="ZLIB",
|
|
author="jeff",
|
|
author_email="jeff@i2p.rocks",
|
|
description="lokinet python bindings",
|
|
url="https://github.com/loki-project/loki-network",
|
|
install_requires=["pysodium", "requests", "python-dateutil"],
|
|
packages=find_packages()) |