diff --git a/servefiles/setup.py b/servefiles/setup.py new file mode 100644 index 0000000..aca5537 --- /dev/null +++ b/servefiles/setup.py @@ -0,0 +1,15 @@ +#!/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" +)