forked from ankraft/ACME-oneM2M-CSE
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (48 loc) · 1.11 KB
/
setup.py
File metadata and controls
52 lines (48 loc) · 1.11 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
from setuptools import setup
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / 'README.md').read_text()
setup(
name='ACME-oneM2M-CSE',
version='2023.10.1',
url='https://github.com/ankraft/ACME-oneM2M-CSE',
author='Andreas Kraft',
author_email='an.kraft@gmail.com',
description='An open source CSE Middleware for Education',
long_description=README,
long_description_content_type='text/markdown',
license='BSD',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.10',
],
#packages=find_packages(),
packages=[ 'acme' ],
exclude=('tests',),
include_package_data=True,
install_requires=[
'cbor2',
'flask',
'flask-cors',
'InquirerPy',
'isodate',
'paho-mqtt',
'plotext',
'python3-dtls',
'rdflib',
'requests',
'rich',
'shapely',
'textual',
'textual-plotext',
'tinydb',
'waitress',
],
entry_points={
'console_scripts': [
'acme-cse=acme.__main__:main',
]
},
)