From 278408fc4344184c53829ce7f6585cf6b6fa8f8f Mon Sep 17 00:00:00 2001 From: keviny2 Date: Thu, 28 Nov 2024 15:53:50 -0800 Subject: [PATCH 1/2] Fix mapping between package name and physical directory --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bf8b05c..dabe692 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup(name="PyMart", version="0.0.1", description="Python based API wrapper around Ensembl's BioMart", - package_dir={"pymart": "pymart"}, + package_dir={"pymart": "PyMart"}, long_description=long_description, long_description_content_type='text/markdown', url="https://github.com/ivanp1994/PyMart.git", From 63ff42a01d765313a57f0d9385a364192ed34721 Mon Sep 17 00:00:00 2001 From: keviny2 Date: Tue, 3 Dec 2024 18:26:06 -0800 Subject: [PATCH 2/2] Change PyMart dir to pymart to align with package name --- {PyMart => pymart}/__init__.py | 0 {PyMart => pymart}/base.py | 0 {PyMart => pymart}/funcs.py | 0 setup.py | 3 +-- 4 files changed, 1 insertion(+), 2 deletions(-) rename {PyMart => pymart}/__init__.py (100%) rename {PyMart => pymart}/base.py (100%) rename {PyMart => pymart}/funcs.py (100%) diff --git a/PyMart/__init__.py b/pymart/__init__.py similarity index 100% rename from PyMart/__init__.py rename to pymart/__init__.py diff --git a/PyMart/base.py b/pymart/base.py similarity index 100% rename from PyMart/base.py rename to pymart/base.py diff --git a/PyMart/funcs.py b/pymart/funcs.py similarity index 100% rename from PyMart/funcs.py rename to pymart/funcs.py diff --git a/setup.py b/setup.py index dabe692..4b1642e 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,3 @@ - from setuptools import setup with open("README.md", "r") as _f: @@ -13,7 +12,7 @@ setup(name="PyMart", version="0.0.1", description="Python based API wrapper around Ensembl's BioMart", - package_dir={"pymart": "PyMart"}, + package_dir={"pymart": "pymart"}, long_description=long_description, long_description_content_type='text/markdown', url="https://github.com/ivanp1994/PyMart.git",