forked from fusionbox/django-betterforms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.18 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.18 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
__doc__ = """
App for Django featuring improved form base classes.
"""
version = '1.1.5.dev0'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-betterforms',
version=version,
description=__doc__,
long_description=read('README.rst'),
url="https://django-betterforms.readthedocs.org/en/latest/",
author="Fusionbox",
author_email='programmers@fusionbox.com',
packages=[package for package in find_packages() if package.startswith('betterforms')],
install_requires=[
'Django>=1.4',
'six',
],
tests_require=[
'mock>=1.0.1',
],
zip_safe=False,
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
)