-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (45 loc) · 1.69 KB
/
setup.py
File metadata and controls
50 lines (45 loc) · 1.69 KB
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
49
50
"""
Setup script for EML Content Extractor.
Note: This project now uses pyproject.toml for configuration.
This setup.py is kept for backward compatibility.
For new installations, use: uv sync
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
setup(
name="eml-extractor",
version="1.0.0",
author="OpenHands",
author_email="[email protected]",
description="A Python tool to extract content from .eml (email) files and save it as text files",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/eml-extractor",
py_modules=["eml_extractor"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: Email",
"Topic :: Text Processing",
"Topic :: Utilities",
],
python_requires=">=3.6",
install_requires=requirements,
entry_points={
"console_scripts": [
"eml-extractor=eml_extractor:main",
],
},
)