-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (42 loc) · 1.45 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
import os
from setuptools import setup
from django_exchange import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks',
]
REQUIREMENTS = [
'django>=1.11',
'exchangelib>=2.0.1',
]
setup(
name='django-exchange',
packages=['django_exchange'],
version=__version__,
description='EmailBackend for Django to work with Microsoft Exchange Server',
long_description=read('README.md'),
license='MIT',
author='Robert Stein',
author_email='robert@blueshoe.de',
url='https://github.com/Blueshoe/django-exchange',
install_requires=REQUIREMENTS,
keywords=['django', 'Outlook', 'Microsoft', 'Exchange', 'Blueshoe'],
classifiers=CLASSIFIERS,
include_package_data=True,
zip_safe=False
)