Skip to content

Commit

Permalink
Merge pull request #275 from DavidT3/bug/noPackagesIncludedInRelease
Browse files Browse the repository at this point in the history
Using the setuptools find_packages function in the hope it works and …
  • Loading branch information
DavidT3 authored Apr 25, 2024
2 parents 16fb11d + 6942f8a commit a85a85b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# This code is a part of the Democratising Archival X-ray Astronomy (DAXA) module.
# Last modified by David J Turner ([email protected]) 25/04/2024, 17:54. Copyright (c) The Contributors
# Last modified by David J Turner ([email protected]) 25/04/2024, 18:11. Copyright (c) The Contributors

from os import path

from setuptools import setup
from setuptools import setup, find_packages

# Uses the README as the long description
this_directory = path.abspath(path.dirname(__file__))
Expand All @@ -13,7 +13,7 @@
setup(
name='daxa',
version='{{VERSION_PLACEHOLDER}}',
packages=['daxa'],
packages=find_packages(),
url='https://github.com/DavidT3/DAXA',
license='BSD 3',
author='David J Turner',
Expand Down

0 comments on commit a85a85b

Please sign in to comment.