-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 868 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
"""setup script for digiaccounts module"""
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='digiaccounts',
version='0.1',
author='Alex Howard',
author_email='[email protected]',
maintainer='Alex Howard',
maintainer_email='[email protected]',
description='An automated tool for extracting key facts from Companies House (UK) digital accounts files',
long_description=long_description,
packages=['digiaccounts'],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=[
'oracledb',
'py_xbrl',
'pymongo==4.3.3',
'pytest==7.1.2',
'python_dateutil==2.8.2',
],
)