-
Notifications
You must be signed in to change notification settings - Fork 164
/
setup.py
executable file
·62 lines (55 loc) · 2.16 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
# pylint: disable=missing-docstring,locally-disabled
import codecs
import re
from os import path
from setuptools import setup, find_packages
def read(*parts):
filename = path.join(path.dirname(__file__), *parts)
with codecs.open(filename, encoding='utf-8') as _fp:
return _fp.read()
def get_version(*file_paths):
"""Get the django-chartit2 version without importing the module."""
version_file = read(*file_paths)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
setup(
name='django_chartit',
version=get_version('chartit', '__init__.py'),
packages=find_packages(exclude=["demoproject.*", "demoproject",
"docs.*", "docs"]),
description=("A Django app to plot charts and pivot charts directly from "
"the models. Uses HighCharts and jQuery JavaScript libraries "
"to render the charts on the webpage."),
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
],
platforms='any',
keywords='django charts',
author='Praveen Gollakota',
author_email='[email protected]',
maintainer='Alexander Todorov',
maintainer_email='[email protected]',
url='https://github.com/chartit/django-chartit',
license='BSD',
include_package_data=True,
zip_safe=False,
)