-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
57 lines (53 loc) · 1.95 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
import os
from setuptools import setup, find_packages
README = os.path.join(os.path.dirname(__file__), 'README.rst')
REQUIREMENTS = os.path.join(os.path.dirname(__file__), 'requirements.txt')
REQUIREMENTS = open(REQUIREMENTS, 'r').read().splitlines()
VERSION = os.path.join(os.path.dirname(__file__), 'VERSION')
VERSION = open(VERSION, 'r').read().strip()
setup(
name='grano',
version=VERSION,
description="An investigative toolkit for influence influence mapping",
long_description=open(README, 'r').read(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords='sql graph sna networks journalism ddj entities',
author='Code for Africa',
author_email='[email protected]',
url='http://github.com/CodeForAfrica/grano',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['grano'],
package_data={'grano': ['fixtures/base.yaml']},
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
dependency_links=[
'https://github.com/CodeForAfrica/grano-client/tarball/master#egg=grano-client',
'https://github.com/CodeForAfrica/grano-ui/tarball/master#egg=grano-ui'
],
entry_points={
'grano.entity.change': [],
'grano.relation.change': [],
'grano.project.change': [],
'grano.schema.change': [],
'grano.startup': [
'bidi_create = grano.query.bidi:GenerateBidi',
'levenshtein = grano.logic.reconcile:ConfigurePostgres'
],
'grano.periodic': [
'degrees = grano.logic.metrics:Degrees',
'bidi_refresh = grano.query.bidi:GenerateBidi'
],
'console_scripts': [
'grano = grano.manage:run',
]
},
tests_require=[],
test_suite='grano.test'
)