-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.14 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.14 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
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='4.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='webcom@ucf.edu',
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.14',
'django-widget-tweaks',
'gunicorn',
'mysqlclient',
'python-ldap>=3.4.0',
'requests==2.25.1',
'tqdm',
'unicodecsv',
'Unidecode',
'urllib3>=1.26',
'beautifulsoup4',
'boto',
'progress'
]
)