lokinet/contrib/py/pylokinet/setup.py

14 lines
347 B
Python
Raw Normal View History

2019-01-17 16:21:35 +00:00
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",
2019-01-23 18:33:44 +00:00
install_requires=["pysodium", "requests", "python-dateutil"],
2019-01-17 16:21:35 +00:00
packages=find_packages())