-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
31 lines (28 loc) · 1001 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# File: Ampel-alerts/setup.py
# License: BSD-3-Clause
# Author: valery brinnel <[email protected]>
# Date: Unspecified
# Last Modified Date: 30.03.2023
# Last Modified By: valery brinnel <[email protected]>
from setuptools import find_namespace_packages, setup
package_data = {
'conf': [
'ampel-alerts/*.yaml', 'ampel-alerts/*.yml', 'ampel-alerts/*.json',
'ampel-alerts/**/*.yaml', 'ampel-alerts/**/*.yml', 'ampel-alerts/**/*.json',
],
'ampel.test': ['test-data/*']
}
setup(
name = 'ampel-alerts',
version = '0.9.0',
description = 'Alice in Modular Provenance-Enabled Land',
author = 'Valery Brinnel',
maintainer = 'Jakob van Santen',
maintainer_email = '[email protected]',
url = 'https://ampelproject.github.io',
packages = find_namespace_packages(),
package_data = package_data,
python_requires = '>=3.10,<3.11'
)