-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
51 lines (46 loc) · 1.24 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
44
45
46
47
48
49
50
51
[project]
name = "protmapper"
version = "0.0.29"
description = "Map protein sites to human reference sequence."
keywords = ["protein", "proteomics", "sequence", "alignment", "assembly", "post-translational", "modification"]
readme = "README.md"
authors = [
{name = "John A. Bachman", email = "[email protected]"},
{name = "Benjamin M. Gyori", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"boto3",
"pystow>=0.1.0",
"requests",
"tqdm",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/gyorilab/protmapper"
[project.optional-dependencies]
rest_api = [
"flask",
"flask_cors",
]
tests = [
"pytest",
"pytest-cov"
]
[project.scripts]
protmapper = "protmapper.cli:main"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
markers = [
"webservice: marks tests that rely on third-party webservices",
]