This repository was archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.43 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
from setuptools import setup, find_packages
setup(
name='emencia-contact-form-maintenance',
version=__import__('emencia_contact_form').__version__,
description=__import__('emencia_contact_form').__doc__,
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author='Emencia',
author_email='[email protected]',
url='https://github.com/emencia/contact_form',
license='AGPL 3.0',
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
include_package_data=True,
zip_safe=False,
install_requires=[
'django>=1.8,<2.0',
'django-modeltranslation',
'django-countries',
'django-crispy-forms',
'crispy-forms-foundation',
'django-recaptcha',
'django-import-export',
'django-cms>=3',
# used in hierarchy for ContactAdmin
'pytz'
],
)