-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 899 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
27
28
29
30
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
try:
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
except IOError:
README = ''
setup(name='django-humanize',
version='0.1.2',
description='Use humanize 3rd-party lib as template filters',
long_description=README,
author='Jocelyn Delalande',
author_email='[email protected]',
url='https://github.com/oasiswork/django-humanize/',
license='BSD License',
packages=['django_humanize', 'django_humanize.templatetags'],
install_requires=['humanize>=0.5.1', 'Django'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Framework :: Django'
]
)