-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (30 loc) · 1.12 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf8") ## UnicodeDecodeError when decoding the REAME file
setup(
name="digitaltwins",
version="1.0b3",
description='A Python tool for interacting with the 12 Labours DigitalTWINS (Digital Translational Workflows for '
'Integrating Systems) Platform',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/ABI-CTT-Group/digitaltwins-api',
author="Thiranja Prasad Babarenda Gamage, Chinchien Lin, Linkun Gao, Jiali Xu, David Nickerson",
email="[email protected], [email protected]",
license="Apache-2.0",
packages=find_packages(),
include_package_data=True,
package_data={'': ['./resources/**']},
install_requires=[
"psycopg2",
"gen3~=4.21.0",
"python-irodsclient>=1.1.8",
# "pandas",
# "xlrd",
# "PyYAML",
# "openpyxl",
# "jsonschema",
# "dictionaryutils"
]
)