-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 1.01 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
import os
from setuptools import setup, find_packages
VERSION = os.path.join(os.path.dirname(__file__), 'VERSION')
VERSION = open(VERSION, 'r').read().strip()
setup(
name='granoloader',
version=VERSION,
description="Import data to grano using CSV files.",
long_description="",
classifiers=[
],
keywords='data client rest grano sna ddj journalism',
author='Code for Africa',
author_email='support@codeforafrica.org',
url='https://github.com/CodeForAfrica/granoloader',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
zip_safe=False,
install_requires=[
"grano-client>=0.3",
"unicodecsv>=0.9.4",
"click>=2.3",
"thready>=0.1.4",
"python-dateutil>=2.2"
],
dependency_links=[
'https://github.com/CodeForAfrica/grano-client/tarball/master#egg=grano-client'
],
tests_require=[],
entry_points="""
[console_scripts]
granoloader=granoloader.command:init
""",
)