From 7a5ed7dfaea1afdbea6838a4f1d970fc4f64c1f8 Mon Sep 17 00:00:00 2001 From: Adam Musciano Date: Mon, 30 May 2022 23:54:22 -0400 Subject: [PATCH] pypi setup --- LICENSE.txt | 17 +++++++++++++++++ setup.py | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 LICENSE.txt create mode 100644 setup.py diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..3754756 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,17 @@ +MIT License +Copyright (c) 2018 YOUR NAME +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6da0859 --- /dev/null +++ b/setup.py @@ -0,0 +1,36 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + + +setuptools.setup( + name = 'emlhound', + packages = ['emlhound'], + version = '0.2', + license='MIT', + description = 'EML Forensics Application', + long_description=long_description, + long_description_content_type="text/markdown", + author = 'needmorecowbell', + author_email = 'amusciano@gmail.com', + url = 'https://github.com/needmorecowbell/EMLHound', + download_url = 'https://github.com/needmorecowbell/EMLHound/archive/refs/tags/0.2.tar.gz', + keywords = ['EML'], # Keywords that define your package best + install_requires=[ # I get to this in a second + 'fastapi', + 'uvicorn', + 'redis', + 'jinja2', + 'eml_parser[filemagic]', + 'requests', + 'watchdog' + ], + classifiers=[ + 'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package + 'Intended Audience :: Developers', # Define that your audience are developers + 'Topic :: Software Development :: Build Tools', + 'License :: OSI Approved :: MIT License', # Again, pick a license + 'Programming Language :: Python :: 3.10', #Specify which pyhton versions that you want to support + ], +)