Skip to content

Commit

Permalink
Merge pull request #1 from needmorecowbell/pypi
Browse files Browse the repository at this point in the history
pypi setup
  • Loading branch information
needmorecowbell authored May 31, 2022
2 parents 023df27 + 7a5ed7d commit 52f4363
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
17 changes: 17 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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.
36 changes: 36 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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 = '[email protected]',
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
],
)

0 comments on commit 52f4363

Please sign in to comment.