-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 998 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
from setuptools import setup, find_packages
import sys, os
execfile('datatables/version.py')
setup(
name='openspending.plugins.datatables',
version=__version__,
description='OpenSpending Data Tables',
keywords='openspending openspending-plugin datatables',
author='Open Knowledge Foundation',
author_email='okfn-help at lists okfn org',
url='http://github.com/okfn/openspending.plugins.datatables',
license='GPL v3',
install_requires=[
'openspending'
],
packages=find_packages('.packageroot'),
package_dir={'': '.packageroot'},
namespace_packages=['openspending', 'openspending.plugins'],
include_package_data=True,
message_extractors = {
'datatables': [
('**.py', 'python', None),
('public/**', 'ignore', None)
]
},
entry_points={
'openspending.plugins': [
'datatables = openspending.plugins.datatables:DataTablesPlugin'
]
},
zip_safe=False
)