Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Package updates #118

Merged
merged 2 commits into from
Jul 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ node_modules/*

# developer specific settings
gulp-config.json

*.egg-info
106 changes: 68 additions & 38 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 35 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,49 @@
#
# This file is autogenerated by pip-compile with python 3.8
# To update, run:
#
# pip-compile
#
asgiref==3.2.10
beautifulsoup4==4.9.1
boto==2.49.0
# via django
certifi==2020.6.20
# via requests
chardet==3.0.4
Django==3.1.1
# via requests
django==3.1.12
# via PostMaster (setup.py)
django-widget-tweaks==1.4.8
# via PostMaster (setup.py)
gunicorn==20.0.4
# via PostMaster (setup.py)
idna==2.10
# via requests
mysqlclient==2.0.1
# via PostMaster (setup.py)
pyasn1==0.4.8
# via
# pyasn1-modules
# python-ldap
pyasn1-modules==0.2.8
# via python-ldap
python-ldap==3.3.1
# via PostMaster (setup.py)
pytz==2020.1
requests==2.24.0
soupsieve==2.0.1
# via django
requests==2.25.1
# via PostMaster (setup.py)
sqlparse==0.3.1
# via django
tqdm==4.49.0
# via PostMaster (setup.py)
unicodecsv==0.14.1
Unidecode==1.1.1
urllib3==1.25.10
# via PostMaster (setup.py)
unidecode==1.1.1
# via PostMaster (setup.py)
urllib3==1.26.6
# via
# PostMaster (setup.py)
# requests

# The following packages are considered to be unsafe in a requirements file:
# setuptools
37 changes: 37 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
from setuptools import setup, find_packages
import pathlib

here = pathlib.Path(__file__).parent.resolve()

long_description = (here / 'README.markdown').read_text(encoding='utf-8')

setup(
name='PostMaster',
version='3.1.0',
description='An application for sending emails with remote content to arbitrary recipients.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/UCF/PostMaster/',
author='UCF Web Communications',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: UCF Community',
'Topic :: UCF Communications :: Utility',
'License :: MIT',
'Programming Language :: Python :: 3 :: Only'
],
packages=find_packages('.'),
install_requires=[
'Django==3.1.12',
'django-widget-tweaks',
'gunicorn',
'mysqlclient',
'python-ldap',
'requests==2.25.1',
'tqdm',
'unicodecsv',
'Unidecode',
'urllib3>=1.26'
]
)