-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
39 lines (35 loc) · 1.05 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name="django-checkboxselectmultiple",
version="0.0.1",
url='http://github.com/MagicSolutions/django-checkboxselectmultiple',
description="Form widget for using multiple checboxes instead of <select multiple>",
long_description=read('README.rst'),
author='Venelin Stoykov',
author_email='venelin@magicsolutions.bg',
packages=[
'checkboxselectmultiple',
],
package_data={
'checkboxselectmultiple': [
'static/checkboxselectmultiple/*.js',
'static/checkboxselectmultiple/*.css',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=[
'django',
],
)