-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.95 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
# This pyproject.toml seems to work to build a new package
# when `setuptools==67.6.1` is installed.
[project]
name = "djaodjin-saas"
dynamic = ["version"]
description = "Django application for software-as-service and subscription businesses"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "BSD-2-Clause"}
keywords = ["django", "stripe", "saas", "subscriptions", "razorpay", "plans"]
authors = [
]
maintainers = [
]
classifiers = [
"Framework :: Django",
"Environment :: Web Environment",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License"
]
dependencies = [
"Django>=1.11",
"django-countries>=2.1.2",
"django-localflavor>=1.0",
"django-phonenumber-field>=2.4.0",
"djangorestframework>=3.3.1",
# We need Python Markdown for django.contrib.markup. markdown2 is not enough.
"Markdown>=2.4",
"phonenumbers>=8.12.6",
"python-dateutil>=2.2",
"stripe>=2.71.0",
"razorpay>=0.2.0"
]
[project.urls]
repository = "https://github.com/djaodjin/djaodjin-saas"
documentation = "https://djaodjin-saas.readthedocs.io/"
changelog = "https://github.com/djaodjin/djaodjin-saas/changelog"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["saas*"]
[tool.setuptools.package-data]
saas = [
'fixtures/*',
'static/js/*.js',
'static/data/*.json',
'templates/notification/*.eml',
'templates/saas/*.html',
'templates/saas/agreements/*.md',
'templates/saas/billing/*.html',
'templates/saas/billing/cartitems/*.html',
'templates/saas/legal/*.html',
'templates/saas/metrics/*.html',
'templates/saas/profile/*.html',
'templates/saas/profile/plans/*.html',
'templates/saas/profile/roles/*.html',
'templates/saas/users/*.html',
'templates/saas/users/roles/*.html'
]
[tool.setuptools.dynamic]
version = {attr = "saas.__version__"}