-
Notifications
You must be signed in to change notification settings - Fork 125
/
pyproject.toml
60 lines (54 loc) · 1.89 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "backend"
backend-path = ["packages"]
[project]
name = "rest-pandas"
dynamic = ["version"]
authors = [
{name = "S. Andrew Sheppard", email = "andrew@wq.io"},
]
description = "Serves up pandas dataframes via the Django REST Framework for client-side visualizations."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"djangorestframework>=3.3.1",
"pandas>=0.19.0",
]
[project.urls]
Homepage = "https://django-rest-pandas.wq.io/"
Documentation = "https://django-rest-pandas.wq.io/"
Source = "https://github.com/wq/django-rest-pandas"
"Release Notes" = "https://django-rest-pandas.wq.io/releases/"
Issues = "https://github.com/wq/django-rest-pandas/issues"
CI = "https://github.com/wq/django-rest-pandas/actions/workflows/test.yml"
[tool.setuptools]
[tool.setuptools.packages.find]
include = ["rest_pandas*"]
[tool.setuptools.package-data]
"rest_pandas.templates" = [ "**/*" ]
"rest_pandas.static" = [ "**/*" ]
[tool.setuptools_scm]
write_to = "packages/analyst/src/version.js"
write_to_template = 'export default "{version}";'