-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (52 loc) · 1.44 KB
/
setup.py
File metadata and controls
53 lines (52 loc) · 1.44 KB
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
from setuptools import find_packages, setup
setup(
name="ocdsadditions",
version="0.1.0",
author="Open Data Services",
author_email="code@opendataservices.coop",
url="https://github.com/OpenDataServices/ocds-additions",
project_urls={
"Documentation": "https://ocds-additions.readthedocs.io/en/latest/",
"Issues": "https://github.com/OpenDataServices/ocds-additions/issues",
"Source": "https://github.com/OpenDataServices/ocds-additions",
},
description="",
license="MIT",
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={
"ocdsadditions": [
"templates/*.html",
"templates/*/*.html",
"templates/*/*/*.html",
]
},
include_package_data=True,
python_requires=">=3.7",
install_requires=[
"ocdskit>=1.0.3,<1.1",
"ocdsextensionregistry>=0.1.10,<0.2",
"click>8,<9",
"requests",
"python-dateutil",
"Jinja2",
"flattentool>0.17",
],
extras_require={
"dev": [
"pytest",
"black==22.12.0",
"isort",
"flake8",
"mypy",
"sphinx",
"sphinx_rtd_theme",
],
},
classifiers=[],
entry_points={
"console_scripts": [
"ocdsadditions = ocdsadditions.cli.main:cli",
"ocdsadditionsinit = ocdsadditions.cli.init:cli",
],
},
)