forked from ANCIR/grano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.33 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
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='Friedrich Lindenberg',
author_email='[email protected]',
url='http://docs.grano.cc',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages = ['grano'],
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
entry_points={
'grano.entity.change': [],
'grano.relation.change': [],
'grano.startup': [],
'console_scripts': [
'grano = grano.manage:run',
]
},
tests_require=[],
test_suite='grano.test'
)