-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (36 loc) · 1.25 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
import os
from setuptools import setup, find_packages
VERSION = os.path.join(os.path.dirname(__file__), 'VERSION')
VERSION = open(VERSION, 'r').read().strip()
README = os.path.join(os.path.dirname(__file__), 'README.rst')
README = open(README, 'r').read().strip()
setup(
name='grano-reconcile',
version=VERSION,
description="An entity and social network tracking software for news applications (OpenRefine reconciliation API)",
long_description=README,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords='sql graph sna networks journalism ddj refine googlerefine openrefine api reconciliation',
author='Friedrich Lindenberg',
author_email='[email protected]',
url='http://github.com/granoproject/grano-reconcile',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=[],
include_package_data=True,
zip_safe=False,
install_requires=[
'grano>=0.3.1',
],
entry_points={
'grano.startup': [
'reconcile = grano.reconcile.view:Configure'
]
},
tests_require=[]
)