forked from monim67/django-bootstrap-datepicker-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (44 loc) · 1.43 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='django-bootstrap-datepicker-plus',
version='2.0.0',
description='Bootstrap 3/4 compatible datepicker for Django projects.',
long_description=readme(),
url='https://github.com/monim67/django-bootstrap-datepicker-plus',
author='Munim Munna',
author_email='[email protected]',
license='Apache License 2.0',
keywords='django bootstrap date datepicker',
packages=['bootstrap_datepicker_plus'],
install_requires=[
'django>=1.8',
],
python_requires='>=3',
package_data={
'bootstrap_datepicker_plus': [
'static/css/*.css',
'static/js/*.js',
'static/js/locales/*.js',
]
},
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Environment :: Web Environment',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
],
)