-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
76 lines (63 loc) · 1.47 KB
/
setup.py
File metadata and controls
76 lines (63 loc) · 1.47 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
from setuptools import setup, find_packages
import pathlib, os, time
#_name='acmecse-dev'
#_version=time.strftime("%Y%m%d%H%M%S")
_name='acmecse'
_version='2025.11'
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / 'tools/pypi/README.md').read_text()
# Find directories that are modules and have __init__.py
directories = [d for d,n,f in os.walk('acmecse') if '__init__.py' in f]
#print(directories)
setup(
name=_name,
version=_version,
author='Andreas Kraft',
author_email='an.kraft@gmail.com',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.11',
],
description='An open source CSE Middleware for Education',
entry_points={
'console_scripts': [
'acmecse=acmecse.__main__:main',
'acmecse-onboarding=acmecse.onboarding:main',
]
},
include_package_data=True,
install_requires=[
'cachetools',
'coapthon3-acme-cse',
'cbor2',
'flask',
'flask-cors',
'InquirerPy',
'isodate',
'kazoo',
'paho-mqtt>=2.0.0',
'plotext',
'psycopg2-binary',
'pyperclip',
'python-dotenv',
#'python3-dtls',
'rdflib',
'requests',
'rich',
'shapely',
'textual==5.2.0',
# 'textual[syntax]',
'textual-plotext==1.0.1',
'tinydb',
'waitress',
'websockets',
],
license='BSD',
long_description=README,
long_description_content_type='text/markdown',
packages = directories,
#package_dir={'acmecse': 'acmecse'},
url='https://acmecse.net',
)