forked from skcript/cvscan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 820 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 820 Bytes
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
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='cvscan',
version='0.0.1',
description='Your not so typical resume parser',
long_description=readme,
author='Swaathi Kakarla, Lakshmanaram',
author_email='swaathi@skcript.com, ram@skcript.com',
url = 'https://github.com/skcript/cvscan',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
package_data={'cvscan': ['data/*/*']},
include_package_data=True,
entry_points={
'console_scripts': [
'cvscan = cvscan.cli:main',
],
},
install_requires=(
['click','nltk==3.2.1','pdfminer==20140328','wheel==0.24.0','numpy==1.11.3']
)
)