-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (42 loc) · 1.08 KB
/
setup.py
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
from setuptools import find_packages, setup
setup(
name="jsondataferret",
version="0.7.1",
author="Open Data Services",
author_email="code@opendataservices.coop",
packages=[p for p in find_packages() if p.startswith("jsondataferret")],
package_data={
"jsondataferret": [
"templates/*",
"templates/*/*",
"templates/*/*/*",
"templates/*/*/*/*",
"templates/*/*/*/*/*",
]
},
url="https://github.com/OpenDataServices/json-data-ferret",
license="MIT",
description="Django App for managing JSON Data",
install_requires=[
"Django>=3.2",
"django-filter",
"jsonmerge",
"spreadsheetforms",
"Pygments",
"jsonschema",
"psycopg2",
"json-merge-patch",
],
extras_require={
"dev": [
"pip-tools",
"black==22.3",
"flake8",
"isort",
"django-environ",
"sphinx",
"odsc-default-sphinx-theme",
]
},
python_requires=">=3.9",
)