add packaging
[relay.git/.git] / setup.cfg
1 [metadata]
2 name = relay
3 description = Generic LitePub relay (works with all LitePub consumers and Mastodon)
4 long_description = file: README.md
5 long_description_content_type = text/markdown; charset=UTF-8
6 url = https://git.pleroma.social/pleroma/relay
7 license = AGPLv3
8 license_file = LICENSE
9 classifiers =
10     Environment :: Console
11     License :: OSI Approved :: AGPLv3 License
12     Programming Language :: Python :: 3.6
13     Programming Language :: Python :: 3.7
14     Programming Language :: Python :: 3.8
15     Programming Language :: Python :: 3.9
16     Programming Language :: Python :: 3.10
17 project_urls =
18     Source = https://git.pleroma.social/pleroma/relay
19     Tracker = https://git.pleroma.social/pleroma/relay/-/issues
20
21 [options]
22 zip_safe = False
23 packages = find:
24 install_requires =
25                 aiohttp>=3.5.4
26                 async-timeout>=3.0.0
27                 attrs>=18.1.0
28                 chardet>=3.0.4
29                 idna>=2.7
30                 idna-ssl>=1.1.0; python_version < "3.7"
31                 multidict>=4.3.1
32                 pycryptodome>=3.9.4
33                 PyYAML>=5.1
34                 simplejson>=3.16.0
35                 yarl>=1.2.6
36                 cachetools
37                 async_lru
38 python_requires = >=3.6