-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (43 loc) · 1.73 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (43 loc) · 1.73 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
#!/usr/bin/env python
from pathlib import Path
from setuptools import find_packages, setup
NAME = "nucosObs"
ROOT = Path(__file__).parent
version_namespace = {}
exec((ROOT / NAME / "version.py").read_text(), version_namespace)
setup(name=NAME,
version=version_namespace["version"],
description='nucosObs - an observer/observable toolbox based on asyncio',
long_description=(ROOT / "README.md").read_text(),
long_description_content_type="text/markdown",
url='https://github.com/DocBO/nucosObs',
project_urls={
"Source": "https://github.com/NuCOS/nucosObs",
"Issues": "https://github.com/NuCOS/nucosObs/issues",
"Changelog": "https://github.com/NuCOS/nucosObs/blob/master/docs/CHANGELOG.md",
"Security": "https://github.com/NuCOS/nucosObs/security/policy",
},
author='Oliver Braun',
author_email='oliver.braun@nucos.de',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
],
keywords='observer observable asyncio',
python_requires='>=3.11',
packages=find_packages(include=["nucosObs", "nucosObs.*"]),
install_requires=['websockets>=15,<17', 'aiohttp>=3.12,<4'],
extras_require={
"test": [
"pytest>=9,<10",
"pytest-asyncio>=1,<2",
"pytest-cov>=7,<8",
],
},
)