-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (25 loc) · 911 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="python_eml_parser",
version="2.0.1",
description="Rapid7 InsightConnect email parser for email plugins",
long_description=long_description,
long_description_content_type="text/markdown",
author="Rapid7 Integrations Alliance",
author_email="[email protected]",
url="https://github.com/rapid7/python-eml-parser",
packages=find_packages(),
install_requires=[],
entry_points={"console_scripts": ["eml-parser=eml_parser.__main__:main"]},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
],
license="MIT",
)