From d811d21229f194751f86bcd74913807a22e517a3 Mon Sep 17 00:00:00 2001 From: Devashish Tripathi Date: Wed, 14 Feb 2024 01:46:46 +0530 Subject: [PATCH] Create setup.py --- setup.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..009f558 --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +from setuptools import setup, find_packages + +setup( + name="smcpp_pipeline", + version="0.1.0", + author="Devashish Tripathi", + author_email="devashishtripathi697@gmail.com", + description="A python pipeline for implementing smcpp package to decipher demographic history of populations", + long_description=open("README.md").read(), + long_description_content_type="text/markdown", + url="https://github.com/Devashish13/smcpp_pipeline", + packages=find_packages(), + install_requires=[ + "numpy>=1.18.5", + "pandas>=1.0.5", + # Add any other package dependencies you need + ], + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires='>=3.6', +)