forked from tutorcruncher/django-bootstrap3-datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.12 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
import sys
from setuptools import setup
long_description = ''
if 'upload' in sys.argv or 'register' in sys.argv:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
setup(
name='django-bootstrap3-datetimepicker-2',
packages=['bootstrap3_datetime'],
include_package_data=True,
version='2.4.2',
description='Bootstrap3 compatible datetimepicker for Django projects.',
long_description=long_description,
author='Nakahara Kunihiko/Samuel Colvin',
author_email='nakahara.kunihiko@gmail.com/s@muelcolvin.com',
url='https://github.com/samuelcolvin/django-bootstrap3-datetimepicker',
license='Apache License 2.0',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Environment :: Web Environment',
'Framework :: Django',
],
)