forked from ankurCES/bai-file-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (44 loc) · 1.56 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
import importlib
import os
import sys
import warnings
from setuptools import setup
if sys.version_info[0:2] < (3, 6):
warnings.warn('This package is tested with Python version 3.6+')
root_path = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root_path, 'README.rst')) as readme:
README = readme.read()
package_info = importlib.import_module('bai_file_processor')
install_requires = []
tests_require = [
'flake8', 'flake8-bugbear', 'flake8-quotes', 'flake8-blind-except', 'flake8-debugger', 'pep8-naming',
]
setup(
name='bai_file_processor',
version=package_info.__version__,
author=package_info.__author__,
author_email='[email protected]',
url='https://github.com/ankurCES/bai-file-processor',
packages=['bai_file_processor'],
package_dir={'bai_file_processor': 'bai_file_processor'},
include_package_data=True,
license='MIT',
description='BAI File Parser',
long_description=README,
keywords='BAI bookkeeping cash management balance reporting',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
install_requires=install_requires,
tests_require=tests_require,
test_suite='tests',
)