forked from nkunihiko/django-bootstrap3-datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.21 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
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(
name='django-datetimepicker',
packages=['datetimepicker',],
package_data={'datetimepicker': ['static/datetimepicker/css/*.css',
'static/datetimepicker/js/*.js',
'static/datetimepicker/vendor/js/jquery.min.js']},
include_package_data=True,
version='3.0',
description='Datetimepicker for Django projects.',
long_description=long_description,
author='Pablo Escodebar',
author_email='[email protected]',
url='https://github.com/escodebar/django-datetimepicker.git',
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',
],
)