@@ -4,15 +4,16 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " pase"
7- version = " 3.1 .0"
8- description = " Python Audio Spectrogram Explorer (PASE) - A GUI tool for marine acoustic analysis and annotation "
7+ version = " 1.0 .0"
8+ description = " Python Audio Spectrogram Explorer (PASE) - A GUI tool for marine acoustic analysis"
99authors = [
1010 {name = " Sebastian Menze" , email = " sebastian.menze@gmail.com" }
1111]
1212readme = " README.md"
1313requires-python = " >=3.8"
1414license = {text = " MIT" }
15- keywords = [" audio" , " spectrogram" , " acoustics" , " annotation" , " marine-biology" , " bioacoustics" , " passive-acoustics" ]
15+ keywords = [" audio" , " spectrogram" , " acoustics" , " marine-biology" , " bioacoustics" , " passive-acoustics" ]
16+
1617classifiers = [
1718 " Development Status :: 4 - Beta" ,
1819 " Intended Audience :: Science/Research" ,
@@ -48,7 +49,6 @@ dev = [
4849 " pytest-qt>=4.0.0" ,
4950 " black>=22.0.0" ,
5051 " flake8>=4.0.0" ,
51- " mypy>=0.950" ,
5252 " isort>=5.10.0" ,
5353]
5454all = [
@@ -58,46 +58,21 @@ all = [
5858[project .urls ]
5959Homepage = " https://github.com/sebastianmenze/pase"
6060Repository = " https://github.com/sebastianmenze/pase"
61- Documentation = " https://github.com/sebastianmenze/pase/blob/main/README.md"
62- "Bug Tracker" = " https://github.com/sebastianmenze/pase/issues"
61+ Issues = " https://github.com/sebastianmenze/pase/issues"
6362
6463[project .scripts ]
65- pase = " pase:start"
64+ pase = " pase.pase :start"
6665
67- [tool .setuptools .packages .find ]
68- where = [" ." ]
69- include = [" pase*" ]
66+ [tool .setuptools ]
67+ package-dir = {"" = " src" }
7068
71- [tool .setuptools .package-data ]
72- pase = [" *.ui " , " *.qrc " ]
69+ [tool .setuptools .packages . find ]
70+ where = [" src " ]
7371
7472[tool .black ]
7573line-length = 120
76- target-version = [' py38' , ' py39' , ' py310' , ' py311' , ' py312' ]
77- exclude = '''
78- /(
79- \.git
80- | \.venv
81- | build
82- | dist
83- )/
84- '''
74+ target-version = [' py38' ]
8575
8676[tool .isort ]
8777profile = " black"
8878line_length = 120
89- multi_line_output = 3
90-
91- [tool .pytest .ini_options ]
92- testpaths = [" tests" ]
93- python_files = [" test_*.py" ]
94- python_classes = [" Test*" ]
95- python_functions = [" test_*" ]
96- addopts = " --verbose"
97-
98- [tool .mypy ]
99- python_version = " 3.8"
100- warn_return_any = true
101- warn_unused_configs = true
102- disallow_untyped_defs = false
103- ignore_missing_imports = true
0 commit comments