Merge pull request #401 from Aimilius/setup-py

Add setup.py
This commit is contained in:
Steven Smith 2017-11-12 21:40:35 -08:00 committed by GitHub
commit 271fa1c838
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

15
servefiles/setup.py Normal file
View File

@ -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"
)