Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Devashish13 authored Feb 13, 2024
1 parent f26b50a commit d811d21
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from setuptools import setup, find_packages

setup(
name="smcpp_pipeline",
version="0.1.0",
author="Devashish Tripathi",
author_email="[email protected]",
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',
)

0 comments on commit d811d21

Please sign in to comment.