-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
42 lines (40 loc) · 1.24 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="ixbrl-parse",
version="0.10.1",
author="Cybermaggedon",
author_email="[email protected]",
description="Parse iXBRL files, can present in RDF",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cybermaggedon/ixbrl-parse",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
download_url = "https://github.com/cybermaggedon/ixbrl-parse/archive/refs/tags/v0.9.4.tar.gz",
install_requires=[
"number_parser",
"requests",
"lxml",
"rdflib",
# 200MB dependency, not installing as standard
# "pandas"
],
scripts=[
"scripts/ixbrl-dump",
"scripts/ixbrl-report",
"scripts/ixbrl-markdown",
"scripts/ixbrl-to-rdf",
"scripts/ixbrl-to-csv",
"scripts/ixbrl-to-json",
"scripts/ixbrl-to-xbrl",
"scripts/ixbrl-to-kv",
"scripts/ixbrl-diff"
]
)