-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
26 lines (25 loc) · 833 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-timezones",
version = __import__("timezones").__version__,
author = "Brian Rosner",
author_email = "[email protected]",
description = "A Django reusable app to deal with timezone localization for users",
long_description = open("README").read(),
url = "https://github.com/brosner/django-timezones/",
license = "MIT",
packages = [
"timezones",
"timezones.templatetags",
],
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",
]
)