-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (31 loc) · 1.12 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
import io
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='card_data_parsers',
version='0.16.0',
author='Siva Narayanan',
author_email='siva@fyle.in',
url='https://www.fylehq.com',
license='MIT',
description='Parsing bank feed data files',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
install_requires=[
'pycountry >= 18.5.26',
'typing-extensions>=3.10.0.0',
'jsondiff >= 1.2.0',
'dataclasses>=0.6'
],
keywords=['fyle', 'api', 'python', 'sdk', 'cards', 'parsers', 'amex', 'visa', 'cdf', 'vcf', 's3df', 'happay', 'mastercard', 'diners club'],
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
]
)