Skip to content

Commit

Permalink
Create pyproject.toml, setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
gayaldassanayake committed Nov 19, 2021
1 parent e7a26ba commit a23b5f5
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
31 changes: 31 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[metadata]
name = pipeline
version = 0.1.0
author = Chamika Nandasiri, Sasindu Alahakoon, Gayal Dassanayake
author_email = chamikanandasiri97@gmail.com, dilsharasasindu@gmail.com, g.c.dassanayake@gmail.com
description = MetaGSC plasmid/chromosome predictor for metagenomic assemblies.
long_description = file: README.md
keywords = bioinformatics, plasmid, chromosome, metagenomic
long_description_content_type = text/markdown
url = https://github.com/MetaGSC/pipeline
project_urls =
Bug Tracker = https://github.com/MetaGSC/pipeline/issues
classifiers =
Operating System :: POSIX :: Linux
Development Status :: 2 - Pre-Alpha
Programming Language :: Python :: 3
Natural Language :: English
Topic :: Scientific/Engineering :: Bio-Informatics

[options]
package_dir =
= src
packages = find:
install_requires =
biopython
tqdm

python_requires = >=3.6

[options.packages.find]
where = src

0 comments on commit a23b5f5

Please sign in to comment.