Skip to content

Commit

Permalink
Added MANIFEST.in file
Browse files Browse the repository at this point in the history
  • Loading branch information
puehringer committed Apr 5, 2022
1 parent 91f6a84 commit 27b7565
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include tdp_core *
11 changes: 4 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def requirements(file):
'Programming Language :: Python :: 3.10'
],

python_requires='>=3',
python_requires='>=3.10',

# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
Expand All @@ -60,12 +60,9 @@ def requirements(file):
'develop': requirements('requirements_dev.txt'),
},

# If there are data files included in your packages that need to be
# installed, specify them here. If using Python 2.6 or less, then these
# have to be included in MANIFEST.in as well.
package_data={
pkg['name']: ['*/**/*']
},
# Include all files from the MANIFEST.in file.
include_package_data=True,
package_data={},

# Although 'package_data' is the preferred approach, in some case you may
# need to place data files outside of your packages. See:
Expand Down

0 comments on commit 27b7565

Please sign in to comment.