Skip to content

Commit

Permalink
removing pytest.ini, restructuring setup.py slighly and adapt MANIFES…
Browse files Browse the repository at this point in the history
…T.in to just consider all files in src
  • Loading branch information
sdrauz authored and sdrauz committed Dec 13, 2023
1 parent 0cbeaa9 commit 8934524
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
8 changes: 2 additions & 6 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
include LICENSE AUTHORS README.rst CHANGELOG.rst .github/**/*.yml
global-include *.json
global-include *.csv
global-include *.txt
graft src

prune doc*
prune tutorials*
include LICENSE AUTHORS README.rst CHANGELOG.rst .github/**/*.yml
3 changes: 0 additions & 3 deletions pytest.ini

This file was deleted.

7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
# and Energy System Technology (IEE), Kassel, and University of Kassel. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.

import re

from setuptools import find_namespace_packages
from setuptools import setup
import re

with open('README.rst', 'rb') as f:
install = f.read().decode('utf-8')
Expand Down Expand Up @@ -40,7 +41,7 @@
'jolando.kisse@uni-kassel.de',
description='A pipeflow calculation tool that complements pandapower in the simulation of multi energy grids',
long_description=long_description,
long_description_content_type='text/x-rst',
long_description_content_type='text/x-rst',
url='http://www.pandapipes.org',
license='BSD',
install_requires=["pandapower>=2.11.1", "matplotlib", "shapely"],
Expand All @@ -50,7 +51,7 @@
"all": ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex",
"plotly", "igraph", "pytest", "pytest-xdist", "nbmake"]},
packages=find_namespace_packages(where='src'),
package_dir={"":"src"},
package_dir={"": "src"},
include_package_data=True,
classifiers=classifiers
)

0 comments on commit 8934524

Please sign in to comment.