-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·53 lines (51 loc) · 1.61 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
VERSION = '0.10.0'
PATH = os.path.dirname(os.path.abspath(__file__))
try:
LONG_DESC = '\n===='+open(os.path.join(PATH, 'README.rst'), 'r').read().split('====', 1)[-1]
except IOError: #happens when using tox
LONG_DESC = ''
setup(name='django-hyperadmin',
version=VERSION,
description="A hypermedia API framework for Django.",
long_description=LONG_DESC,
classifiers=[
'Programming Language :: Python',
'Environment :: Web Environment',
'Framework :: Django',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='django hypermedia HATEOAS REST',
author = 'Jason Kraus',
author_email = 'zbyte64@gmail.com',
maintainer = 'Jason Kraus',
maintainer_email = 'zbyte64@gmail.com',
url='http://github.com/webcube/django-hyperadmin',
license='New BSD License',
packages=find_packages(exclude=['tests']),
test_suite='tests.runtests.runtests',
tests_require=(
'pep8',
'coverage',
'django',
'Mock',
'nose',
'django-nose',
),
install_requires=[
'mimeparse',
'django-datatap',
],
include_package_data = True,
zip_safe = False,
)