forked from EE/django-pretty-times
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 1.02 KB
/
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
27
28
29
from setuptools import find_packages
from distutils.core import Command, setup
import os
import re
setup(
name="django-pretty-times",
version='0.1.0',
author="imtapps",
author_email="[email protected]",
description="pretty_times provides django template helpers for the py-pretty library.",
long_description=file('README.rst', 'r').read(),
url="http://github.com/imtapps/django-pretty-times",
packages=find_packages(exclude=['example']),
install_requires=file('requirements/base.txt').read().split("\n"),
include_package_data=True,
zip_safe=False,
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
)