forked from cfpb/django-hud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (30 loc) · 987 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import os
from setuptools import setup, find_packages
def read_file(filename):
"""Read a file into a string"""
path = os.path.abspath(os.path.dirname(__file__))
filepath = os.path.join(path, filename)
try:
return open(filepath).read()
except IOError:
return ''
setup(
name='django_hud',
version=__import__('hud_api_replace').__version__,
author='s gorobet',
author_email='[email protected]',
packages=['hud_api_replace'],
include_package_data=True,
description=u'An API to return Counseling Agencies list',
classifiers=[
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
],
long_description=read_file('README.md'),
zip_safe=False,
)