forked from theatlantic/django-select2-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.02 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
#!/usr/bin/env python
from setuptools import setup, find_packages
try:
readme = open('README.rst', 'rt').read()
except IOError:
raise AttributeError('Use the create_readme_rst command to convert README to reStructuredText')
setup(
name='django-select2-forms',
version='1.1.19',
description='Django form fields using the Select2 jQuery plugin',
author='Frankie Dintino',
author_email='fdintino@theatlantic.com',
url='https://github.com/theatlantic/django-select2-forms',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
use_2to3=True,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Framework :: Django',
],
entry_points={
'distutils.commands': [
'create_readme_rst = select2.build:create_readme_rst',
],
},
)