-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
29 lines (27 loc) · 916 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
import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name = 'django-localflavor-br',
version = '1.0',
description = 'Country-specific Django helpers for Brazil.',
long_description = README,
author = 'Django Software Foundation',
author_email = '[email protected]',
license='BSD',
url = 'https://github.com/django/django-localflavor-br',
packages = ['django_localflavor_br'],
include_package_data = True,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=[
'Django>=1.4',
]
)