-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 726 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name="django-globetrotter",
version="0.0.5",
description="Extra i18n + l10n tools for Django",
long_description="Extra i18n + l10n tools for Django",
keywords="django, i18n, l10n",
author="Jared Morse <jarcoal@gmail.com>",
author_email="jarcoal@gmail.com",
url="https://github.com/jarcoal/django-globetrotter",
license="BSD",
packages=["globetrotter"],
zip_safe=False,
install_requires=['pytz'],
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
)