-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
75 lines (71 loc) · 2.29 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
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
"""******************************************************************************
* Copyright (c) 2018 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and
* Document License (2015-05-13) which is available at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document.
*
* SPDX-License-Identifier: EPL-2.0 OR W3C-20150513
********************************************************************************"""
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="domus-tdd-api",
version="1.0.2",
description="A modular and semantic Thing Description Directory",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
long_description=long_description,
long_description_content_type="text/markdown",
author="Eclipse Thingweb Project",
maintainer="Eclipse Thingweb Project",
url="https://github.com/eclipse-thingweb/domus-tdd-api",
project_urls={
"Releases": "https://github.com/eclipse-thingweb/domus-tdd-api/tags",
"Source": "https://github.com/eclipse-thingweb/domus-tdd-api",
},
keywords=[
"web of things",
"thing description directory",
"wot",
"tdd",
],
classifiers=["Programming Language :: Python", "Framework :: Flask"],
install_requires=[
"Flask",
"httpx",
"jsonschema",
"rdflib",
"json-merge-patch",
"python-configuration[toml]",
"pyshacl",
"importlib-metadata",
"toml",
],
extras_require={
"prod": [
"gunicorn",
],
"dev": [
"pytest",
"pytest-env",
"pytest_httpx",
"jsoncomparison",
"pytz",
"black",
"flake8",
"requests",
],
},
entry_points={
"console_scripts": ["domus-tdd-api = tdd:cli"],
},
)