-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (46 loc) · 1.89 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
from setuptools import find_namespace_packages, find_packages, setup
with open("README.md", "r") as fh:
LONG_DESC = fh.read()
setup(
name="eml-to-html",
version="0.0.2",
py_modules=["eml_to_html"],
scripts=["eml_to_html.py"],
entry_points={"console_scripts": ["eml-to-html = eml_to_html:main"]},
description="Converts `.eml` files to HTML.",
keywords="",
long_description=LONG_DESC,
long_description_content_type="text/markdown",
license="MIT",
license_file="LICENSE",
author="Jeroen Overschie",
author_email="[email protected]",
maintainer="Jeroen Overschie",
maintainer_email="[email protected]",
url="https://github.com/dunnkers/eml-to-html",
project_urls={
"Github": "https://github.com/dunnkers/eml-to-html",
"Bug Tracker": "https://github.com/dunnkers/eml-to-html/issues",
"Documentation": "https://dunnkers.com/eml-to-html",
},
include_package_data=True,
install_requires=[],
python_requires=">= 3.7",
setup_requires=["black==21.12b0", "pytest-runner>=5"],
tests_require=["pytest>=6", "pytest-cov>=3", "pytest-dependency"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Typing :: Typed",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)