-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.14 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# File: Ampel-interface/setup.py
# License: BSD-3-Clause
# Author: vb, jvs
# Date: Unspecified
# Last Modified Date: 06.04.2023
# Last Modified By: valery brinnel <[email protected]>
from setuptools import find_namespace_packages, setup
install_requires = ['PyYAML>=5.4.1,<7.0.0', 'pydantic>=1.8,<2']
extras_require = {
'docs': [
'Sphinx>=3.5.1,<4.0.0',
'sphinx-autodoc-typehints>=1.11.1,<2.0.0',
'tomlkit>=0.7.0,<0.8.0'
]
}
setup(
name = 'ampel-interface',
version = '0.9.0',
description = 'Base classes for the Ampel analysis platform',
long_description = '# Ampel-interface\n\n`ampel-interface` provides type-hinted abstract base classes for [Ampel](https://ampelproject.github.io).',
author = 'Valery Brinnel',
#author_email = None,
maintainer = 'Jakob van Santen',
maintainer_email = '[email protected]',
url = 'https://ampelproject.github.io',
packages = find_namespace_packages(),
package_data = {'': ['*']},
install_requires = install_requires,
extras_require = extras_require,
python_requires = '>=3.10,<4.0',
)