-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.32 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
"""
setup
Created by lmarvaud on 02/11/2018
"""
from setuptools import setup, find_packages
setup(
name='django_invite',
version='0.1.0',
description="Django application to help managing guest and invitation",
author='Leni Marvaud',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Django :: 2.1',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: French',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3.5',
'Topic :: Communications :: Email',
'Topic :: Communications :: Email :: Address Book',
'Topic :: Communications :: Email :: Mailing List Servers',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='django email invitation',
packages=find_packages(exclude=['demo']),
include_package_data=True,
dependency_links=[
"django>2.1.2,<=2.1.3",
"pytz==2018.7"
],
)