-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
executable file
·43 lines (40 loc) · 1.31 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
import sys
from setuptools import setup
long_description = ''
if 'upload' in sys.argv or 'register' in sys.argv:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
#long_description = pypandoc.convert('README.md', 'rst')
setup(
name='django-bootstrap-datepicker',
packages=['bootstrap_datepicker'],
package_data={
'bootstrap_datepicker': [
'static/css/*.css',
'static/js/*.js',
'static/js/locales/*.js',
]
},
install_requires=[
'django>=4.2',
],
include_package_data=True,
version='1.5.0',
description='Bootstrap 3/4/5 compatible datepicker for Django projects.',
long_description=long_description,
author='Paul Bucher',
author_email='paul@sandyfeetsoftware.com',
url='https://github.com/pbucher/django-bootstrap-datepicker',
license='Apache License 2.0',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Environment :: Web Environment',
'Framework :: Django',
],
)