-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (38 loc) · 1.28 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = [
"setuptools>=61.0.0",
"wheel>=0.34.2",
"setuptools-scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = 'magsplitter'
description = 'magsplitter allows for splitting ePGDB files from metapathways into individual outputs for each MAG.'
authors = [{name = "Immanuel Abdi", email='[email protected]'}]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
]
requires-python = '>=3.7'
readme= 'README.md'
dependencies = [
"pandas>=1.4.3",
]
dynamic = ['version']
[project.urls]
homepage = 'https://github.com/Koonkie-Cloud-Services/MAGSplitter'
documentation = 'https://github.com/Koonkie-Cloud-Services/MAGSplitter'
repository = 'https://github.com/Koonkie-Cloud-Services/MAGSplitter'
[tool.setuptools.packages] # Package discovery
find = {}
[tool.setuptools_scm]
version_scheme = "release-branch-semver"
[project.scripts]
magsplitter = 'magsplitter.main:main'