-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathsetup.py
72 lines (67 loc) · 2.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import subprocess
from setuptools import setup, find_packages
LONG_DESCRIPTION = """
Serves up pandas dataframes via the Django REST Framework for client-side
(i.e. d3.js) visualizations
"""
def parse_markdown_readme():
"""
Convert README.md to RST via pandoc, and load into memory
(fallback to LONG_DESCRIPTION on failure)
"""
try:
subprocess.call(
['pandoc', '-t', 'rst', '-o', 'README.rst', 'README.md']
)
except OSError:
return LONG_DESCRIPTION
# Attempt to load output
try:
readme = open('README.rst')
except IOError:
return LONG_DESCRIPTION
else:
return readme.read()
setup(
name='rest-pandas',
version='0.5.0',
author='S. Andrew Sheppard',
author_email='[email protected]',
url='https://github.com/wq/django-rest-pandas',
license='MIT',
packages=['rest_pandas'],
package_data={
'rest_pandas': [
'mustache/*.*',
]
},
description=LONG_DESCRIPTION.strip(),
long_description=parse_markdown_readme(),
install_requires=[
'djangorestframework>=3.3.1',
'pandas>=0.19.0',
],
classifiers=[
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Visualization',
],
test_suite='tests',
tests_require=[
'wq.io', 'xlwt', 'openpyxl', 'matplotlib',
'django', 'django-mustache'
],
)