forked from mfogel/django-timezone-field
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (25 loc) · 842 Bytes
/
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
from setuptools import setup
setup(
name = 'django-timezone-field',
version = __import__('timezone_field').__version__,
author = 'Mike Fogel',
author_email = 'mike@fogel.ca',
description = 'A Django reusable app to save timezones to a database',
long_description = open('README').read(),
url = 'http://github.com/mfogel/django-timezone-field/',
license = 'BSD',
packages = [
'timezone_field',
],
install_requires = ['django', 'pytz'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'Framework :: Django',
]
)