Skip to content

Commit

Permalink
add package files
Browse files Browse the repository at this point in the history
  • Loading branch information
abearab committed Oct 8, 2023
1 parent 5522be4 commit 394d576
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from setuptools import setup, find_packages
from src import __version__
from pathlib import Path

this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()

setup(
python_requires='>=3.8',
name='GISEA',
description="Genetic Interaction Networks and Pathway Modules",
packages=find_packages(include=['src', 'src.*']),
# install_requires=[
# "pandas",
# ],
version=__version__,
# other arguments omitted
long_description=long_description,
long_description_content_type='text/x-rst',
)
1 change: 1 addition & 0 deletions src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
1 change: 1 addition & 0 deletions src/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.1"

0 comments on commit 394d576

Please sign in to comment.