add setup.py
This commit is contained in:
parent
7aad4afeed
commit
9fabfa1c8e
1 changed files with 32 additions and 0 deletions
32
setup.py
Normal file
32
setup.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
#!/usr/bin/env python
|
||||
# vi:si:et:sw=4:sts=4:ts=4
|
||||
# encoding: utf-8
|
||||
from distutils.core import setup
|
||||
|
||||
def get_bzr_version():
|
||||
import os
|
||||
rev = int(os.popen('bzr revno').read())
|
||||
if rev:
|
||||
return u'%s' % rev
|
||||
return u'unknown'
|
||||
|
||||
setup(
|
||||
name="oxdjango",
|
||||
version="1.0.%s" % get_bzr_version() ,
|
||||
description="django utils and usefull stuff",
|
||||
author="0x",
|
||||
author_email="code@0xdb.org",
|
||||
url="http://code.0xdb.org/oxdjango",
|
||||
download_url="http://code.0xdb.org/python-oxdjango/download",
|
||||
license="GPLv3",
|
||||
package_dir = {'ox.django': 'django'},
|
||||
packages=['ox.django'],
|
||||
keywords = [
|
||||
],
|
||||
classifiers = [
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
],
|
||||
)
|
||||
|
Loading…
Reference in a new issue