trying more fixes
This commit is contained in:
parent
b57da8d095
commit
121b4ddeb0
2 changed files with 10 additions and 9 deletions
18
details.json
18
details.json
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "Django-client-reverse",
|
"name": "Django-client-reverse",
|
||||||
"packages": ["django_client_reverse"],
|
"packages": ["django_client_reverse"],
|
||||||
"version": "0.0.3",
|
"version": "0.0.3",
|
||||||
"description": "Django module to access URL reversing client-side",
|
"description": "Django module to access URL reversing client-side",
|
||||||
"author": "Jake Howard",
|
"author": "Jake Howard",
|
||||||
"author_email": "git@theorangeone.net ",
|
"author_email": "git@theorangeone.net ",
|
||||||
"url": "https://github.com/RealOrangeOne/Django-Client-Reverse",
|
"url": "https://github.com/RealOrangeOne/Django-Client-Reverse",
|
||||||
"license": "BSD",
|
"license": "BSD",
|
||||||
"platforms": ["any"]
|
"platforms": ["any"]
|
||||||
}
|
}
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -9,6 +9,7 @@ except:
|
||||||
DETAILS = None
|
DETAILS = None
|
||||||
with open('details.json') as file:
|
with open('details.json') as file:
|
||||||
DETAILS = json_load(file)
|
DETAILS = json_load(file)
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = DETAILS['name'],
|
name = DETAILS['name'],
|
||||||
packages = DETAILS['packages'],
|
packages = DETAILS['packages'],
|
||||||
|
|
Reference in a new issue