-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
54 lines (50 loc) · 1.91 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
48
49
50
51
52
53
54
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() +
open('TODO.rst').read())
setup(
name='django-adminfiles',
version='1.0.1.post%s' % hgrev,
description='File upload manager and picker for Django admin',
author='Carl Meyer',
author_email='carl@oddbird.net',
long_description=long_description,
url='http://bitbucket.org/carljm/django-adminfiles/',
packages=['adminfiles', 'adminfiles.templatetags', \
'adminfiles.management', 'adminfiles.management.commands'],
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,
test_suite='tests.runtests.runtests',
package_data={'adminfiles': ['static/adminfiles/*.*',
'static/adminfiles/mimetypes/*.png',
'templates/adminfiles/render/*.html',
'templates/adminfiles/render/image/*.html',
'templates/adminfiles/uploader/*.html',
'locale/*/LC_MESSAGES/*']}
)