Skip to content

Commit

Permalink
Setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dohlee committed Feb 16, 2023
1 parent cdec5a2 commit 734ce45
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
from setuptools import setup, find_packages

setup(
name = 'spliceai-pytorch',
packages = find_packages(exclude=[]),
include_package_data = True,
version = '0.0.1',
license='MIT',
description = 'SpliceAI - Pytorch',
author = 'Dohoon Lee',
author_email = 'dohlee.bioinfo@gmail.com',
long_description_content_type = 'text/markdown',
url = 'https://github.com/dohlee/spliceai-pytorch',
keywords = [
'artificial intelligence',
'genomics',
'RNA splicing',
],
install_requires=[
'einops>=0.3',
'numpy',
'torch>=1.6',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
],
)

0 comments on commit 734ce45

Please sign in to comment.