-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (24 loc) · 1004 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
from setuptools import setup # pragma: no cover
def readme(): # pragma: no cover
with open('README.rst') as f:
return f.read()
setup(name='django-utf8field', # pragma: no cover
version='1.0.0',
description='Add UTF-8 Validation to Django FileFields, CharFields and TextFields',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Framework :: Django',
],
author='Stef Bastiaansen',
author_email='[email protected]',
url='https://github.com/megasnort/django-utf8field',
download_url='https://github.com/megasnort/django-utf8field/archive/v1.0.0.tar.gz',
packages=['utf8field'],
keywords='django utf-8',
license='Apache',
)