Skip to content

Commit

Permalink
updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AvetisyanAram committed Nov 2, 2022
1 parent 9199b0d commit da1b8eb
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
from setuptools import setup, find_packages
from os import path

with open('README.md') as readme_file:
README = readme_file.read()
here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup_args = dict(
name='ecglib',
version='1.0.0',
version='1.0.1',
description='ECG library with pretrained models and tools for ECG analysis',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache License 2.0',
packages=find_packages(),
include_package_data=True,
Expand Down

0 comments on commit da1b8eb

Please sign in to comment.