-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.17 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
setup(
name='FAIRLinked',
version='0.2.0.1',
description='Transform research data into FAIR-compliant RDF using the RDF Data Cube Vocabulary. Align your datasets with MDS-Onto and convert them into Linked Data, enhancing interoperability and reusability for seamless data integration. See the README or vignette for more information. This tool is used by the SDLE Research Center at Case Western Reserve University.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Balashanmuga Priyan Rajamohan, Kai Zheng, Benjamin Pierce, Erika I. Barcelos, Roger H. French',
author_email='rxf131@case.edu',
license='BSD-2-Clause',
packages=find_packages(),
install_requires=[
'rdflib>=7.0.0',
'typing-extensions>=4.0.0',
'pyarrow>=11.0.0',
'openpyxl>=3.0.0',
'pandas>=1.0.0'
],
extras_require={
'dev': [
'pytest',
'pytest-cov'
]
},
entry_points={
'console_scripts': [
'FAIRLinked=FAIRLinked.__main__:main'
]
},
python_requires='>=3.9.18',
)