-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (62 loc) · 1.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "porerefiner"
authors = [
{name = "Justin Payne", email = "[email protected]"},
]
description = "To help you manage your pores"
readme = "README.rst"
requires-python = ">=3.8"
keywords = ["porerefiner"]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
]
dependencies = [
'click',
'flask',
'peewee',
'gunicorn',
'hachiko',
'aiohttp',
'aiofile',
'namesgenerator',
'python-daemon',
'protobuf',
'grpclib',
'tabulate',
'asyncssh',
'setproctitle',
'pyyaml'
]
dynamic = ["version"]
[project.urls]
Homepage = 'https://github.com/CFSAN-Biostatistics/porerefiner'
[project.optional-dependencies]
test = [ 'hypothesis~=4.57.1',
'hypothesis-fspaths~=0.1',
'Mock~=4.0.0',
'pytest-asyncio~=0.23.8']
dev = [ 'grpcio-tools',
'configparser',
'pytest',
'hypothesis',
'black',
'flake8',
'sphinx',
'tox',
'twine',
'coverage',
'zest.releaser',
]
[project.scripts]
porr = "porerefiner.cli:cli"
porerefinerd = "porerefiner.porerefiner:cli"
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]