forked from fossasia/eventyay-tickets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
146 lines (138 loc) · 4.08 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
[project]
name = "eventyay"
dynamic = ["version"]
description = "the open source event solution"
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["tickets", "events", "web", "shop", "ecommerce"]
authors = [ {name = "eventyay", email = "[email protected]"}, ]
maintainers = [ {name = "eventyay", email = "[email protected]"}, ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Environment :: Web Environment",
"License :: OSI Approved :: Apache License, Version 2.0",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django :: 3.2",
]
dependencies = [
'Django==4.2.*',
'djangorestframework==3.14.*',
'python-dateutil==2.8.*',
'isoweek',
'requests==2.31.*',
'pytz',
'django-bootstrap3==23.1.*',
'django-formset-js-improved==0.5.0.3',
'django-compressor==4.3.*',
'django-hierarkey==1.1.*',
'django-filter==23.2',
'django-scopes==2.0.*',
'django-localflavor==4.0',
'reportlab==4.0.*',
'Pillow==9.5.*',
'PyPDF2==2.12.*',
'django-libsass==0.9',
'libsass==0.22.*',
'django-otp==1.2.*',
'webauthn==0.4.*',
'python-u2flib-server==4.*',
'django-formtools==2.4.1',
'celery==5.3.*',
'kombu==5.3.*',
'django-statici18n==2.3.*',
'css-inline==0.8.*',
'BeautifulSoup4==4.12.*',
'slimit',
'lxml',
'static3==0.7.*',
'dj-static',
'csscompressor',
'django-markup',
'markdown==3.4.3',
'bleach==5.0.*',
'sentry-sdk==1.15.*',
'babel',
'paypalrestsdk==1.13.*',
'pycparser==2.21',
'django-redis==5.4.*',
'redis==5.0.*',
'fakeredis==2.18.*',
'stripe==5.4.*',
'chardet==5.1.*',
'mt-940==4.30.*',
'django-i18nfield==1.9.*,>=1.9.4',
'psycopg2-binary',
'tqdm==4.*',
'vobject==0.9.*',
'pycountry',
'django-countries==7.5.*',
'pyuca', # for better sorting of country names in django-countries
'defusedcsv>=1.1.0',
'vat_moss_forked==2020.3.20.0.11.0',
'jsonschema',
'django-hijack==2.*',
'openpyxl==3.1.*',
'django-oauth-toolkit==1.6.*',
'oauthlib==3.2.*',
'django-phonenumber-field==7.1.*',
'phonenumberslite==8.13.*',
'python-bidi==0.4.*', # Support for Arabic in reportlab
'arabic-reshaper==3.0.0', # Support for Arabic in reportlab
'packaging',
'tlds>=2020041600',
'text-unidecode==1.*',
'protobuf==4.23.*',
'cryptography>=3.4.2',
'sepaxml==2.6.*',
]
[project.optional-dependencies]
memcached = ["pylibmc"]
dev = [
'django-debug-toolbar==4.0.*',
'pycodestyle==2.10.*',
'pyflakes==3.0.*',
'flake8==6.0.*',
'pep8-naming==0.13.*',
'coveralls',
'coverage',
'pytest==7.3.*',
'pytest-django==4.*',
'pytest-xdist==3.3.*',
'isort==5.12.*',
'pytest-mock==3.10.*',
'pytest-rerunfailures==11.*',
'responses',
'potypo',
'freezegun',
'pytest-cache',
'pytest-cov',
'pytest-sugar',
]
[project.entry-points."distutils.commands"]
build = "setup:CustomBuild"
build_ext = "setup:CustomBuildExt"
[build-system]
requires = [
'setuptools',
'setuptools-rust',
'wheel',
'importlib_metadata',
]
[project.urls]
homepage = "https://eventyay.com"
repository = "https://github.com/fossasia/eventyay-tickets.git"
documentation = "https://eventyay.com"
changelog = "https://eventyay.com"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pretix.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["pretix*"]
namespaces = false