Skip to content

Commit e69bf15

Browse files
committed
fixed setup.py and README.rst
1 parent fbaf8dd commit e69bf15

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include README.rst

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#!/bin/env python
22

3+
import os
34
from distutils.core import setup
45

56
name = 'django_sphinx_db'
67
version = '0.1'
78
release = '1'
89
versrel = version + '-' + release
9-
readme = 'README.rst'
10+
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
1011
download_url = 'https://github.com/downloads/btimby/django-sphinx-db' \
1112
'/' + name + '-' + versrel + '.tar.gz'
1213
long_description = file(readme).read()

0 commit comments

Comments
 (0)