forked from SwissTPH/tricc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (36 loc) · 940 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
31
32
33
34
35
36
37
from setuptools import setup
setup(
name="tricc-oo",
version="1.1.10",
author="DHU SwissTPH [email protected]",
description="Python library that converts XLS to Fhir SDC ressource.",
long_description="Python library that converts XLS to Fhir SDC ressource.",
url="https://github.com/SwissTPH/tricc",
keywords="xlsform, drawio, authoring",
python_requires=">=3.8, <4",
install_requires=[
"lxml",
"html2text",
"pydantic",
"babel",
"xlsxwriter",
"pandas",
"polib",
"StrEnum",
"fhir.resources",
"antlr4-python3-runtime",
"antlr-ast",
"antlr-tools"
],
# extras_require={
# 'test': ['pytest', 'coverage'],
# },
# package_data={
# 'sample': ['example_data.csv'],
# },
# entry_points={
# 'runners': [
# 'sample=sample:main',
# ]
# }
)