-
Notifications
You must be signed in to change notification settings - Fork 125
/
setup.py
28 lines (26 loc) · 1.07 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
__author__ = 'Alfredo Saglimbeni'
from distutils.core import setup
from setuptools import setup, find_packages
setup(name = "django-datetime-widget",
version = "0.9.3",
description = "Django-datetime-widget is a simple and clean widget for DateField, Timefiled and DateTimeField in Django framework. It is based on Bootstrap datetime picker, supports both Bootstrap 3 and Bootstrap 2",
long_description=open('README.rst').read(),
author = "Alfredo Saglimbeni",
author_email = "alfredo.saglimbeni@gmail.com",
url = "",
license = "BSD",
packages = find_packages(),
include_package_data=True,
install_requires = ['django','pytz'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
"License :: OSI Approved :: BSD License",
'Topic :: Software Development :: Libraries :: Python Modules ',
],
zip_safe=False,
)