Skip to content

Commit

Permalink
getting started
Browse files Browse the repository at this point in the history
  • Loading branch information
mvinyard committed Sep 6, 2022
1 parent eb16587 commit e904cd3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
Empty file added lightning_tutorial/__init__.py
Empty file.
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from setuptools import setup
import re, os, sys

setup(
name="lightning-tutorial",
version="0.0.0",
python_requires=">3.7.0",
author="Michael E. Vinyard - Harvard University - Massachussetts General Hospital - Broad Institute of MIT and Harvard",
author_email="[email protected]",
url="https://github.com/mvinyard/vinplots",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
description="pytorch-lightning tutorial",
packages=[
"lightning_tutorial",
],
install_requires=[
"pytorch-lightning>=1.7.4"
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
license="MIT",
)

0 comments on commit e904cd3

Please sign in to comment.