-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
50 lines (47 loc) · 1.49 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
49
50
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
VERSION = __import__('balafon').__version__
setup(
name='balafon',
version=VERSION,
description='Contacts management',
packages=find_packages(),
include_package_data=True,
author='Luc Jean',
author_email='[email protected]',
license='CeCILL 2.1',
zip_safe=False,
install_requires=[
'django >= 2.2.13, <3.0',
'djangorestframework >= 3.10.3, <3.11.0',
'django-extensions',
'apidev-coop_cms >= 1.5.12',
'beautifulsoup4',
'django-wkhtmltopdf',
'xlwt',
'xlrd',
'django-recaptcha2',
'django-registration==3.0.1',
'model_mommy',
'django-cors-headers',
],
long_description=open('README.rst').read(),
url='https://github.com/ljean/balafon',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Natural Language :: English',
'Natural Language :: French',
'Topic :: Office/Business',
],
)