-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
24 lines (23 loc) · 900 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
from setuptools import setup, find_packages
setup(
name = 'django-easytz',
version = '0.3',
description = 'Timezone localization without any thinking or doing whatsoever.',
long_description = open('README.md').read(),
author = 'James Friedman',
author_email = '[email protected]',
url = 'https://github.com/jamesmfriedman/django-easytz/',
download_url = 'https://github.com/jamesmfriedman/django-easytz/',
license = 'Apache',
keywords = ('timezone','tzinfo', 'datetime', 'jamesmfriedman', 'time', 'django', 'django-timezones', 'django-tz', 'django-easytz'),
packages = find_packages(),
package_data = {'easytz': ['static/easytz/js/*']},
tests_require = (
'django>=1.4',
),
include_package_data = True,
zip_safe = False, # because we're including media that Django needs
install_requires = (
'pytz',
),
)