This repository has been archived by the owner on Apr 3, 2021. It is now read-only.
forked from carljm/django-form-utils
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (43 loc) · 1.49 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup
import subprocess
import os.path
try:
# don't get confused if our sdist is unzipped in a subdir of some
# other hg repo
if os.path.isdir('.hg'):
p = subprocess.Popen(['hg', 'parents', r'--template={rev}\n'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if not p.returncode:
fh = open('HGREV', 'w')
fh.write(p.communicate()[0].splitlines()[0])
fh.close()
except (OSError, IndexError):
pass
try:
hgrev = open('HGREV').read()
except IOError:
hgrev = ''
long_description = open('README.rst').read() + open('CHANGES.rst').read()
setup(
name='django-form-utils',
version='0.2.0.post%s' % hgrev,
description='Form utilities for Django',
long_description=long_description,
author='Carl Meyer',
author_email='carl@dirtcircle.com',
url='http://bitbucket.org/carljm/django-form-utils/',
packages=['form_utils', 'form_utils.templatetags'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
package_data={'form_utils': ['templates/form_utils/*.html',
'media/form_utils/js/*.js']},
test_suite='tests.runtests.runtests'
)