-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (48 loc) · 1.3 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
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
[build-system]
requires = ['setuptools>=68.0']
build-backend = 'setuptools.build_meta'
[tool.setuptools.packages.find]
where = ['.']
[project]
name = 'arroba'
version = '0.7'
authors = [
{ name='Ryan Barrett', email='[email protected]' },
]
description = "Python implementation of Bluesky PDS and AT Protocol, including repo, MST, and sync methods"
readme = 'README.md'
requires-python = '>=3.9'
keywords = ['arroba', 'AT Protocol', 'ATP', 'Bluesky']
dependencies = [
'cachetools>=5.0',
'carbox>=0.3',
'cryptography',
'dag-cbor',
'dag-json>=0.2',
'dnspython>=2.0.0',
'lexrpc>=0.8',
'multiformats>=0.3.1',
'pyjwt>=2.0.0',
'simple-websocket',
]
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'License :: Public Domain',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries :: Python Modules',
]
[project.optional-dependencies]
datastore = [
'google-cloud-ndb>=2.0',
]
flask = [
'Flask>=2.0',
'flask-sock',
]
[project.urls]
'Homepage' = 'https://github.com/snarfed/arroba'
'Documentation' = 'https://arroba.readthedocs.io/'