working on pushing to testpypi

This commit is contained in:
2025-04-21 22:30:24 -05:00
parent 0ab8a5002c
commit 6d19c5b577
2 changed files with 31 additions and 38 deletions

View File

@@ -1,8 +1,6 @@
include LICENSE include LICENSE
include README.md include README.md
include CONTRIBUTING.md include CONTRIBUTING.md
include requirements.txt
include requirements-dev.txt
recursive-include django_aws_ses/templates *.html recursive-include django_aws_ses/templates *.html
recursive-include django_aws_ses/static *.css *.js *.ico recursive-include django_aws_ses/static *.css *.js *.ico
recursive-include django_aws_ses/migrations *.py recursive-include django_aws_ses/migrations *.py

View File

@@ -1,46 +1,41 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f: with open("README.md", "r", encoding="utf-8") as fh:
long_description = f.read() long_description = fh.read()
setup( setup(
name="django_aws_ses", name="django_aws_ses",
version="0.1.0", version="0.1.0",
packages=find_packages(exclude=["tests"]), author="Your Name",
include_package_data=True, author_email="your.email@example.com",
python_requires=">=3.8", description="A Django email backend for Amazon SES with bounce and complaint handling",
install_requires=[
"django>=3.2",
"boto3>=1.18",
"requests>=2.25",
"cryptography>=3.4",
"dnspython>=2.1",
"pytz>=2021.1",
],
extras_require={
"dkim": ["dkimpy>=1.0"],
},
author="Ray Jessop",
author_email="development@zeeksgeeks.com",
description="A Django email backend for Amazon SES",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://git-vault.zeeksgeeks.com/zeeksgeeks/django_aws_ses", url="https://github.com/yourusername/django_aws_ses", # Update with your repo
license="MIT", packages=find_packages(),
keywords=["django", "aws", "ses", "email", "backend", "sns", "dkim"], include_package_data=True,
classifiers=[ install_requires=[
"Development Status :: 4 - Beta", 'django>=3.2',
"Framework :: Django", 'boto3>=1.18.0',
"Framework :: Django :: 3.2", 'requests>=2.26.0',
"Framework :: Django :: 4.0", 'cryptography>=3.4.7',
"Framework :: Django :: 4.2", 'dnspython>=2.1.0',
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: Email",
], ],
extras_require={
'dev': [
'pytest>=7.0.0',
'pytest-django>=4.5.0',
'mock>=4.0.3',
],
'dkim': [
'dkimpy>=1.0.0', # Optional for DKIM signing
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django",
],
python_requires='>=3.6',
) )