-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
32 lines (27 loc) · 931 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
31
32
#!/usr/local/bin/python
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
DESCRIPTION = "HTML5 forms for Django."
try:
LONG_DESCRIPTION = open('README.md').read()
except:
LONG_DESCRIPTION = DESCRIPTION
setup(name='html5forms',
version='0.0.3',
packages=find_packages(),
author=u'Adam Cupiał',
url='https://github.com/adamcupial/django-html5-forms',
include_package_data=True,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)