forked from Arelle/ixbrl-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 775 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
import os
from setuptools import setup, find_packages
setup(
name='ixbrl_viewer',
version=os.getenv('GIT_TAG', '0.0.0'),
description='The Workiva iXBRL Viewer allows iXBRL reports to be viewed interactively in a web browser',
long_description=open('README.md').read(),
url='https://github.com/workiva/ixbrl-viewer',
author='Workiva',
author_email='dave.casleton@workiva.com',
include_package_data=True,
packages=find_packages(),
classifiers=[
'License :: OSI Approved :: Apache License, Version 2.0 (Apache-2.0)',
'Copyright :: Workiva Inc. :: 2019'
'Programming Language :: Python :: 3.6',
],
install_requires=[
'isodate==0.6.0',
'numpy==1.16.1',
'pycountry==18.12.8'
],
)