We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8779c2e commit f014edcCopy full SHA for f014edc
setup.py
@@ -16,7 +16,8 @@
16
def _pyimp():
17
return 'Python'
18
19
-NAME = 'django_celery_beat'
+NAME = 'django-celery-beat'
20
+PACKAGE = 'django_celery_beat'
21
22
E_UNSUPPORTED_PYTHON = '%s 1.0 requires %%s %%s or later!' % (NAME,)
23
@@ -75,7 +76,7 @@ def add_doc(m):
75
76
pats = {re_meta: add_default,
77
re_doc: add_doc}
78
here = os.path.abspath(os.path.dirname(__file__))
-with open(os.path.join(here, NAME, '__init__.py')) as meta_fh:
79
+with open(os.path.join(here, PACKAGE, '__init__.py')) as meta_fh:
80
meta = {}
81
for line in meta_fh:
82
if line.strip() == '# -eof meta-':
0 commit comments