Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tiadams authored Mar 1, 2024
1 parent 8d53dd9 commit acc3ebf
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import io
import os

from setuptools import setup

DESCRIPTION = 'Intelligent data steward toolbox using Large Language Model embeddings for automated Data-Harmonization.'

here = os.path.abspath(os.path.dirname(__file__))

try:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
except FileNotFoundError:
long_description = DESCRIPTION

setup(
name='index',
version='0.0.2',
packages=['index'],
url='https://github.com/SCAI-BIO/index',
license='Apache-2.0 license"',
author='Tim Adams',
author_email='[email protected]',
description=DESCRIPTION,
long_description=DESCRIPTION,
)

0 comments on commit acc3ebf

Please sign in to comment.