File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Include the README
2+ include *.md
3+
4+ # Include the license file
5+ include LICENSE.txt
6+
7+ # Include setup.py
8+ include setup.py
9+
10+ # Include the data files
11+ recursive-include data *
12+ recursive-include notebooks *
13+ recursive-include figs *
Original file line number Diff line number Diff line change 22from setuptools import setup , find_packages
33import pathlib
44
5- here = pathlib .Path (__file__ ).parent
5+ here = pathlib .Path (__file__ ).parent . resolve ()
66
77# Get the long description from the README file
88long_description = (here / 'description.md' ).read_text (encoding = 'utf-8' )
99
1010# Arguments marked as "Required" below must be included for upload to PyPI.
1111# Fields marked as "Optional" may be commented out.
12- version = '1.0.2 '
12+ version = '1.0.3 '
1313setup (
1414 name = 'stackmaster' ,
1515 version = version ,
You can’t perform that action at this time.
0 commit comments