-
Notifications
You must be signed in to change notification settings - Fork 81
/
setup.py
32 lines (27 loc) · 894 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
32
from setuptools import setup
import sys
requirements = ['future>=0.14',
'dedupe>=1.6,<2']
if sys.version < '3':
requirements += ['backports.csv']
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = "csvdedupe",
version = '0.1.20',
description="Command line tools for deduplicating and merging csv files",
author="Forest Gregg, Derek Eder",
license="MIT",
packages=['csvdedupe'],
entry_points ={
'console_scripts': [
'csvdedupe = csvdedupe.csvdedupe:launch_new_instance',
'csvlink = csvdedupe.csvlink:launch_new_instance'
]
},
install_requires = requirements,
long_description=long_description,
long_description_content_type='text/markdown',
)