Added python project description files
All checks were successful
ydeng/bmlsa/pipeline/head This commit looks good

This commit is contained in:
Harrison Deng 2023-04-21 11:47:28 -05:00
parent 6b3c9c312e
commit 2a80c2aea2
3 changed files with 18 additions and 0 deletions

3
pyproject.toml Normal file
View File

@ -0,0 +1,3 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]

12
setup.cfg Normal file
View File

@ -0,0 +1,12 @@
[metadata]
name = bmlsa
version = 0.0.1
[options]
packages = bmlsa
install_requires =
biopython ==1.81
[options.entry_points]
console_scripts =
bmlsa = bmlsa.cli:main

3
setup.py Normal file
View File

@ -0,0 +1,3 @@
from setuptools import setup
setup()