-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (28 loc) · 893 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
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-client',
version=VERSION,
description="Client library for grano, a social network analysis tool.",
long_description=README,
classifiers=[
],
keywords='data client rest grano sna ddj journalism',
author='Code for Africa',
author_email='[email protected]',
url='https://github.com/CodeForAfrica/grano-client',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
zip_safe=False,
install_requires=[
"requests>=2.17.3",
"PyYAML>=3.12"
],
tests_require=[],
entry_points=\
""" """,
)