VeraGridServer 6.2.4__tar.gz → 6.2.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {veragridserver-6.2.4 → veragridserver-6.2.5}/PKG-INFO +1 -1
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/__version__.py +1 -1
- {veragridserver-6.2.4 → veragridserver-6.2.5}/setup.py +4 -23
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/LICENSE.txt +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/__init__.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/connection_example.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/data/__init__.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/endpoints/__init__.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/endpoints/calculations.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/endpoints/jobs.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/endpoints/register_in_master.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/endpoints/register_sub_servers.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/generate_ssl_key.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/main.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/run.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/settings.py +0 -0
- {veragridserver-6.2.4 → veragridserver-6.2.5}/setup.cfg +0 -0
|
@@ -10,34 +10,15 @@ https://github.com/pypa/sampleproject
|
|
|
10
10
|
"""
|
|
11
11
|
|
|
12
12
|
# Always prefer setuptools over distutils
|
|
13
|
+
from pathlib import Path
|
|
13
14
|
from setuptools import setup, find_packages
|
|
14
|
-
import os
|
|
15
15
|
|
|
16
16
|
from VeraGridServer.__version__ import __VeraGridServer_VERSION__
|
|
17
17
|
|
|
18
|
-
here = os.path.abspath(os.path.dirname(__file__))
|
|
19
|
-
|
|
20
|
-
long_description = """# VeraGrid
|
|
21
|
-
|
|
22
|
-
This software aims to be a complete platform for power systems research and simulation.
|
|
23
|
-
|
|
24
|
-
[Watch the video https](https://youtu.be/SY66WgLGo54)
|
|
25
|
-
|
|
26
|
-
[Check out the documentation](https://gridcal.readthedocs.io)
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
## Installation
|
|
30
|
-
|
|
31
|
-
pip install VeraGridServer
|
|
32
|
-
|
|
33
|
-
For more options (including a standalone setup one), follow the
|
|
34
|
-
[installation instructions]( https://gridcal.readthedocs.io/en/latest/getting_started/install.html)
|
|
35
|
-
from the project's [documentation](https://gridcal.readthedocs.io)
|
|
36
|
-
"""
|
|
37
|
-
|
|
38
18
|
description = 'VeraGrid is a Power Systems simulation program intended for professional use and research'
|
|
39
|
-
|
|
40
|
-
|
|
19
|
+
SRC_ROOT = Path(__file__).resolve().parent
|
|
20
|
+
REPO_ROOT = SRC_ROOT.parents[1]
|
|
21
|
+
long_description = (REPO_ROOT / 'README.md').read_text(encoding='utf-8')
|
|
41
22
|
|
|
42
23
|
pkgs_to_exclude = ['docs', 'research', 'tests', 'tutorials', 'VeraGridEngine']
|
|
43
24
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/endpoints/register_in_master.py
RENAMED
|
File without changes
|
{veragridserver-6.2.4 → veragridserver-6.2.5}/VeraGridServer/endpoints/register_sub_servers.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|