You've already forked FBI-NH
mirror of
https://github.com/nh-server/FBI-NH.git
synced 2026-04-30 11:25:22 -07:00
0c2e20657d
on replacing httpc with curl.
16 lines
407 B
Python
16 lines
407 B
Python
#!/usr/bin/env python
|
|
# coding: utf-8 -*-
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="servefiles",
|
|
version="2.4.12",
|
|
scripts=["servefiles.py", "sendurls.py"],
|
|
author="Steveice10",
|
|
author_email="Steveice10@gmail.com",
|
|
description="Simple Python script for serving local files to FBI's remote installer.",
|
|
license="MIT",
|
|
url="https://github.com/Steveice10/FBI/tree/master/servefiles"
|
|
)
|