-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.19 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.19 KB
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
29
30
31
32
33
34
35
__doc__ = """
An app that provides forms that automatically convert timezones into utc on submit, and (almost) automatically converts timezones into the local time
on render
See the README file for details and usage info.
"""
from setuptools import setup
setup(
name='django-timeforms',
version='0.1',
author='Ben Beecher',
author_email='benbeecher@gmail.com',
description=("""An app that provides forms that automatically convert timezones into utc on submit, and (almost) automatically converts timezones into the local time \
on render"""),
license='GPLv3',
keywords='django timezones time',
url='https://github.com/gone/django-timeforms',
packages=['timeforms'],
test_suite = "test",
long_description=__doc__,
requires= ['Django'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
]
)