-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (45 loc) · 1.31 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
#!/usr/bin/env python
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-plugin-aid",
version="1.0.0",
description="A TDD-API Plugin to add AID related routes",
long_description=long_description,
long_description_content_type="text/markdown",
author="Siemens & Logilab",
maintainer="Christian Glomb",
maintainer_email="[email protected]",
url="https://github.com/wiresio/domus-tdd-api-plugin-aid",
keywords=[
"web of things",
"thing description directory",
"wot",
"tdd",
"asset interfaces description",
],
classifiers=["Programming Language :: Python", "Framework :: Flask"],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"domus-tdd-api >=1.0.2",
],
extras_require={
"dev": [
"pytest",
"mock",
"domus-tdd-api[dev]",
]
},
entry_points={
"tdd_api.plugins.blueprints": [
"aas=domus_tdd_api_plugin_aid:blueprint",
],
"tdd_api.plugins.transformers": [
"aas=domus_tdd_api_plugin_aid.aid:td_to_aas",
],
},
)