Diff of /setup.py [000000] .. [688072]

Switch to unified view

a b/setup.py
1
from setuptools import setup, find_packages
2
3
with open("README.md", "r", encoding="utf-8") as fh:
4
    long_description = fh.read()
5
6
setup(name='ecgxai',
7
      version='0.1.1',
8
      description='Neatly packaged AI methods for ECG analysis',
9
      author='Rutger van de Leur',
10
      author_email='r.r.vandeleur@umcutrecht.nl',
11
      long_description=long_description,
12
      long_description_content_type="text/markdown",
13
      license='GNU AGPLv3',
14
      packages=find_packages(include=['ecgxai', 'ecgxai.*']),
15
      url="https://github.com/rutgervandeleur/ecgxai",
16
      python_requires=">=3.6",
17
      install_requires=[
18
          "pytorch_lightning==1.5.10",
19
          "torchmetrics==0.9.1",
20
          "torch==1.9.*",
21
          "numpy",
22
          "scipy",
23
          "pandas",
24
          "scikit-learn",
25
          "tqdm"
26
        ]
27
      )