1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
django-client-reverse/setup.py

25 lines
607 B
Python
Raw Permalink Normal View History

2015-12-10 13:25:59 +00:00
from distutils.core import setup
from json import load as json_load
LONG_DESCRIPTION = None
try:
LONG_DESCRIPTION = open('README.md').read()
except:
pass
DETAILS = None
with open('details.json') as file:
DETAILS = json_load(file)
2015-12-10 13:32:35 +00:00
2015-12-09 22:02:27 +00:00
setup(
2015-12-10 13:25:59 +00:00
name = DETAILS['name'],
packages = DETAILS['packages'],
version = DETAILS['version'],
description = DETAILS['description'],
long_description = LONG_DESCRIPTION,
author = DETAILS['author'],
author_email = DETAILS['author_email'],
url = DETAILS['url'],
license = DETAILS['license'],
platforms = DETAILS['platforms']
2015-12-10 13:34:03 +00:00
)