-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
executable file
·41 lines (38 loc) · 1.28 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
#!/usr/bin/env python
import codecs
import os
from setuptools import setup, find_packages
readme_rst = os.path.join(os.path.dirname(__file__), 'README.rst')
setup(
name='django-select2-forms',
version='3.0.0',
description='Django form fields using the Select2 jQuery plugin',
long_description=codecs.open(readme_rst, encoding='utf-8').read(),
author='Frankie Dintino',
author_email='[email protected]',
url='https://github.com/theatlantic/django-select2-forms',
packages=find_packages(),
license='BSD',
platforms='any',
install_requires=[
'django-sortedm2m',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
include_package_data=True,
zip_safe=False
)