-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (48 loc) · 1.44 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
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
[build-system]
requires = ['setuptools>=68.0']
build-backend = 'setuptools.build_meta'
# Getting these next two sections and MANIFEST.in just right so that they
# include the *.json files in lexrpc/lexicons/ but exclude other directories was
# a huge amount of pain. setuptools's support for pyproject.toml is confusing
# and immature. Be careful changing them!
[tool.setuptools.package-data]
'*' = ['*.json']
[tool.setuptools.packages.find]
where = ['.']
[project]
name = 'lexrpc'
version = '1.0'
authors = [
{ name='Ryan Barrett', email='lexrpc@ryanb.org' },
]
description = "Python implementation of AT Protocol's XRPC + Lexicon"
readme = 'README.md'
requires-python = '>=3.7'
keywords = ['XRPC', 'Lexicon', 'AT Protocol', 'ATP']
dependencies = [
'dag-cbor',
'dag-json>=0.3',
'grapheme',
'iterators',
'libipld<4.0.0',
'multiformats>=0.3.1.post4',
'requests>=2.0',
'simple-websocket',
]
classifiers = [
'Programming Language :: Python :: 3',
'License :: Public Domain',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries :: Python Modules',
]
[project.urls]
'Homepage' = 'https://github.com/snarfed/lexrpc'
'Documentation' = 'https://lexrpc.readthedocs.io/'
[project.optional-dependencies]
flask = [
'Flask>=2.0',
'flask-sock',
]