-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
44 lines (40 loc) · 1.37 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
import os
from setuptools import setup, find_packages
import formidable
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
setup(
name='django-formidable',
version=formidable.version,
packages=find_packages(),
include_package_data=True,
license='MIT License',
description='django-formidable is a full django application which '
'allows you to create, edit, delete and use forms.',
long_description=README,
url='https://github.com/peopledoc/django-formidable',
author='Guillaume Camera, Guillaume Gérard',
author_email='guillaume.camera@people-doc.com, '
'guillaume.gerard@people-doc.com',
python_requires=">=3.6",
install_requires=[
'Django',
'djangorestframework<4.0.0',
'markdown',
'python-dateutil',
'jsonfield',
'pytz',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)