-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
38 lines (33 loc) · 1.12 KB
/
setup.cfg
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
[metadata]
name = cepact
version = attr: cepact.__version__
author = "ICS, University of St.Gallen"
author_email = "[email protected]"
description = Create CEP activity detection services from expert annotations and IoT data.
long_description_content_type=text/markdown
long_description = file: README.md, HISTORY.md
keywords = activity detection, iot, pattern recognition, domain experts, smart factory
license = GNU Affero General Public License v3 (AGPLv3)
url = https://github.com/ics-unisg/activity-detection-services-generator
project_urls =
Bug Tracker = https://github.com/ics-unisg/activity-detection-services-generator/issues
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Affero General Public License v3
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
[options]
packages = find:
install_requires = file: requirements.txt
include_package_data = True
python_requires = >=3.12
[options.packages.find]
include =
cepact
cepact.*
[options.package_data]
* = static/*
[options.extras_require]
testing =
pytest>=3