-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (39 loc) · 1.2 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 = 'jpl.edrn.pubnot'
dynamic = ['version']
requires-python = '>=3.9'
dependencies = [
'rdflib ~= 7.0.0',
'biopython ~= 1.84'
]
authors = [
{name = 'Sean Kelly', email='[email protected]'}
]
description = 'Publication change notifier for the Early Detection Research Network'
readme = 'README.md'
keywords = ['edrn', 'cancer', 'biomarker', 'publication', 'pubmed', 'entrez', 'maureen']
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
]
license = {file = 'LICENSE.md'}
[project.urls]
Homepage = 'https://github.com/EDRN/pubnot'
Issues = 'https://github.com/EDRN/pubnot/issues'
[project.scripts]
edrn-pubnot = 'jpl.edrn.pubnot.main:main'
[tool.hatch.version]
path = 'src/jpl/edrn/pubnot/VERSION.txt'
pattern = '(?P<version>.+)'
[tool.hatch.build.targets.wheel]
packages = ['src/jpl']
[tool.hatch.metadata]
allow-direct-references = true
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'