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
|
#!/usr/bin/env python
import setuptools
package = 'takahe'
python_requires = '>=3.10'
requires = []
test_requirements = []
foundpackages=setuptools.find_packages(where=".")
prefixedpackages=prefixed=[package + '.' + item for item in foundpackages]
setuptools.setup(
name='Takahe',
version='300ccfbfac970c25eb73922687ded719750acc90',
description='An ActivityPub/Fediverse server',
long_description_content_type='text/markdown',
author='Takahe Authors',
url='https://jointakahe.org/',
packages=prefixedpackages,
scripts=["manage.py"],
package_data={'': ['LICENSE']},
package_dir= {
'takahe.activities': './activities',
'takahe.core': './core',
'takahe.mediaproxy': './mediaproxy',
'takahe.stator': './stator',
'takahe.users': './users',
'takahe.takahe': './takahe',
'takahe.api': './api'
},
include_package_data=True,
python_requires=python_requires,
install_requires=[
'bleach~=5.0.1',
'blurhash-python~=1.1.3',
'cryptography~=38.0',
'dj_database_url~=1.0.0',
'django-cache-url~=3.4.2',
'django-htmx~=1.13.0',
'django-storages[google,boto3]~=1.13.1',
'django~=4.1',
'email-validator~=1.3.0',
'gunicorn~=20.1.0',
'httpx~=0.23',
'markdown_it_py~=2.1.0',
'pillow~=9.3.0',
'psycopg2~=2.9.5',
'pydantic~=1.10.2',
'pyld~=2.0.3',
'pylibmc~=1.6.3',
'pymemcache~=4.0.0',
'python-dotenv~=0.21.0',
'redis~=4.4.0',
'sentry-sdk~=1.11.0',
'sphinx~=5.3.0',
'urlman~=2.0.1',
'uvicorn~=0.19',
'whitenoise~=6.2.0'
],
license='BSD-3',
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3.10',
],
)
|