mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-12 16:10:57 +00:00
Delete requirements.txt file, add setup.py instead.
This commit is contained in:
@ -1,9 +0,0 @@
|
|||||||
asyncio
|
|
||||||
pylint
|
|
||||||
pytest
|
|
||||||
pycryptodome
|
|
||||||
pytest-asyncio
|
|
||||||
click
|
|
||||||
base58
|
|
||||||
pymultihash
|
|
||||||
multiaddr
|
|
||||||
31
setup.py
Normal file
31
setup.py
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
import setuptools
|
||||||
|
|
||||||
|
|
||||||
|
classifiers = [
|
||||||
|
(
|
||||||
|
"Programming Language :: Python :: %s" % x
|
||||||
|
)
|
||||||
|
for x in "3.5 3.6".split()
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
setuptools.setup(
|
||||||
|
name="libp2p",
|
||||||
|
description="libp2p implementation written in python",
|
||||||
|
version="0.0.1",
|
||||||
|
license="MIT",
|
||||||
|
platforms=["unix", "linux", "osx"],
|
||||||
|
classifiers=classifiers,
|
||||||
|
install_requires=[
|
||||||
|
"pylint",
|
||||||
|
"pytest",
|
||||||
|
"pycryptodome",
|
||||||
|
"pytest-asyncio",
|
||||||
|
"click",
|
||||||
|
"base58",
|
||||||
|
"pymultihash",
|
||||||
|
],
|
||||||
|
packages="libp2p",
|
||||||
|
zip_safe=False,
|
||||||
|
)
|
||||||
|
|
||||||
Reference in New Issue
Block a user